41 lines
1.2 KiB
XML
41 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<SupportedPlatform Include="browser"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.21"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<_ContentIncludedByDefault Remove="wwwroot\background.png" />
|
|
<_ContentIncludedByDefault Remove="wwwroot\exampleJsInterop.js" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\StandManager.Domain\StandManager.Domain.csproj" />
|
|
<ProjectReference Include="..\StandManager.Infrastructure\StandManager.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="OAService.Domain">
|
|
<HintPath>..\Libs\OAService.Domain.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="OAService.Infrastructure">
|
|
<HintPath>..\Libs\OAService.Infrastructure.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="OAService.Service">
|
|
<HintPath>..\Libs\OAService.Service.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|