-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMonoGame.Library.BuildScripts.csproj
45 lines (39 loc) · 1.62 KB
/
MonoGame.Library.BuildScripts.csproj
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources/Icon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<LogicalName>Icon.png</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Resources/MonoGame.Library.X.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<LogicalName>MonoGame.Library.X.txt</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Using Include="Cake.Frosting" />
<Using Include="Cake.Common.Build" />
<Using Include="Cake.Common.Diagnostics" />
<Using Include="Cake.Common.Tools.DotNet" />
<Using Include="Cake.Common.Tools.DotNet.MSBuild" />
<Using Include="Cake.Common.Tools.DotNet.Pack" />
<Using Include="Cake.Common.IO" />
<Using Include="Cake.Common" />
<Using Include="Cake.Core" />
<Using Include="Cake.Core.Diagnostics" />
<Using Include="Cake.Core.IO" />
<Using Include="Cake.FileHelpers" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cake.FileHelpers" Version="7.0.0" />
<PackageReference Include="Cake.Frosting" Version="5.0.0" />
<PackageReference Include="NuGet.Packaging" Version="6.12.1" />
<PackageReference Include="System.Formats.Asn1" Version="9.0.0" />
</ItemGroup>
</Project>