You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
3 years ago
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
<!--<Nullable>enable</Nullable>-->
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<UserSecretsId>30b1a548-2fe5-4414-86a4-51573c0aea93</UserSecretsId>
|
||
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||
|
<DockerfileContext>..\..</DockerfileContext>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Masa.Blazor" Version="0.3.11407" />
|
||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\..\src\Easy.Authorization\Easy.Authorization.csproj" />
|
||
|
<ProjectReference Include="..\..\src\Easy.Result\Easy.Result.csproj" />
|
||
|
<ProjectReference Include="..\Easy.AuthorityManagement.Contracts\Easy.AuthorityManagement.Contracts.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Content Update="wwwroot\nav\nav.json">
|
||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|