-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataWinLoad.csproj
More file actions
33 lines (27 loc) · 908 Bytes
/
DataWinLoad.csproj
File metadata and controls
33 lines (27 loc) · 908 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
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StartupObject>DataWinLoad.DataWinLoad</StartupObject>
<ApplicationIcon>icon.ico</ApplicationIcon>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>
<ItemGroup>
<None Remove="Utils\Object.csx" />
<None Remove="Utils\TouchControlsEnabler.csx" />
</ItemGroup>
<ItemGroup>
<Content Include="icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Ini" Version="8.0.0" />
<PackageReference Include="UndertaleModLib" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="UndertaleModLib">
<HintPath>libs\UndertaleModLib.dll</HintPath>
</Reference>
</ItemGroup>
</Project>