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
837 B
30 lines
837 B
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UserSecretsId>41eb41f8-57fb-408a-baab-7328f468e749</UserSecretsId>
|
|
<DockerDefaultTargetOS>Windows</DockerDefaultTargetOS>
|
|
<DockerfileContext>.</DockerfileContext>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="wwwroot\index.html" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="wwwroot\images\CraftSharp-Logo.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\fonts\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|