-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathImproveGame.csproj
More file actions
43 lines (35 loc) · 1.2 KB
/
ImproveGame.csproj
File metadata and controls
43 lines (35 loc) · 1.2 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
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Platforms>ARM64</Platforms>
<!-- Manifest Config -->
<UniqueId>NRTnarathip.ImproveGame</UniqueId>
<Name>Improve Game</Name>
<Authors>NRTnarathip</Authors>
<Description>Support The Mod Language</Description>
<Version>2.0.2</Version>
<MinimumApiVersion>4.1.7</MinimumApiVersion>
<!--Build Config-->
<EnableModDeploy>false</EnableModDeploy>
<EnableHarmony>true</EnableHarmony>
</PropertyGroup>
<ItemGroup>
<!-- Mod Dependencies -->
<SMAPIDependency Include="NRTnarathip.VirtualKeyboard" Required="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Leclair.Stardew.ModManifestBuilder" Version="2.4.1" />
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="4.4.0" />
</ItemGroup>
<ItemGroup>
<None Update="manifest.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command=""$(ProjectDir)PostBuild.cmd"" />
</Target>
</Project>