-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCommon.csproj
More file actions
33 lines (33 loc) · 1 KB
/
Common.csproj
File metadata and controls
33 lines (33 loc) · 1 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
<Project>
<PropertyGroup>
<Version>1.0.0</Version>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>preview</LangVersion>
<EnableHarmony>true</EnableHarmony>
<Nullable>enable</Nullable>
</PropertyGroup>
<Choose>
<When Condition="'$(SDV)' == '1616' ">
<PropertyGroup>
<!--
<GamePath>/home/selph/.steam/steam/steamapps/common/Stardew Valley/</GamePath>
-->
<DefineConstants>SDV1616</DefineConstants>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<GamePath>/home/selph/.steam/steam/steamapps/common/SDV_1.6.15</GamePath>
<DefineConstants>SDV1615</DefineConstants>
</PropertyGroup>
</Otherwise>
</Choose>
<ItemGroup>
<None Include="packages.config" />
<None Include="manifest.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="4.1.1" />
</ItemGroup>
<Import Project="./Common/Common.projitems" Label="Shared" />
</Project>