-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLilRogue.csproj
39 lines (34 loc) · 1.1 KB
/
LilRogue.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="roguesharp" Version="4.2.0" />
<PackageReference Include="SFML.net" Version="2.5.1" />
</ItemGroup>
<ItemGroup>
<None Update="PublicPixel.ttf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="hitHurt.wav">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="attack.wav">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="blipSelect.wav">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="explosion.wav">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="data\monsters.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<!-- Add more files as needed -->
</ItemGroup>
</Project>