-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNovemberPirates.csproj
34 lines (27 loc) · 967 Bytes
/
NovemberPirates.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>NovemberPirates</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="arch" Version="1.2.7" />
<PackageReference Include="raylib-cslo" Version="4.2.0.9" />
</ItemGroup>
<ItemGroup>
<None Update="Assets/**/*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</None>
</ItemGroup>
</Project>