20 lines
684 B
XML
20 lines
684 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="wwwroot\_content\images\blackjack-logo.png" />
|
|
<None Include="wwwroot\_content\images\card-back.png" />
|
|
<None Include="wwwroot\_content\images\dealer-avatar.png" />
|
|
<None Include="wwwroot\_content\images\hit-icon.png" />
|
|
<None Include="wwwroot\_content\images\new-game-icon.png" />
|
|
<None Include="wwwroot\_content\images\player-avatar.png" />
|
|
<None Include="wwwroot\_content\images\stand-icon.png" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|