-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCardMonkey.csproj
More file actions
25 lines (23 loc) · 958 Bytes
/
CardMonkey.csproj
File metadata and controls
25 lines (23 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>CardMonkey</RootNamespace>
<Configurations>Debug;Release</Configurations>
<Nullable>enable</Nullable>
<AssemblyName>CardMonkey</AssemblyName>
<LangVersion>preview</LangVersion>
<Optimize>False</Optimize>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include=".github\workflows\build.yml" />
</ItemGroup>
<Import Project="..\btd6.targets" />
<ItemGroup>
<EmbeddedResource Remove="OldDisplays/**" />
<EmbeddedResource Include="OldDisplays\AceOfSpadesDisplay_53.png" />
<EmbeddedResource Include="OldDisplays\RoyalFlushDisplay_53.png" />
<EmbeddedResource Include="OldDisplays\TFDisplay_53.png" />
<EmbeddedResource Include="OldDisplays\TFDisplay_51.png" />
</ItemGroup>
</Project>