-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMedievil2Archipelago.csproj
More file actions
37 lines (31 loc) · 1.17 KB
/
Medievil2Archipelago.csproj
File metadata and controls
37 lines (31 loc) · 1.17 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>medievil.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\MediEvilFont.ttf" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.Local.json" Condition="Exists('appsettings.Local.json')">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Assets\MediEvilFont.ttf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="medievil.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Archipelago.Core" Version="2.0.1" />
<PackageReference Include="Kokuban" Version="0.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.7" />
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\release.yml" />
</ItemGroup>
</Project>