forked from hajsdfgj/modular-overhaul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModularOverhaul.csproj
143 lines (126 loc) · 5.41 KB
/
ModularOverhaul.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- metadata -->
<Authors>DaLion</Authors>
<AssemblyName>DaLion.Overhaul</AssemblyName>
<RootNamespace>DaLion.Overhaul</RootNamespace>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://gitlab.com/daleao/sdv-mods/-/tree/main/Modular%20Overhaul</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<UpdateKeys>GitHub:daleao/modular-overhaul</UpdateKeys>
<Version>4.2.2</Version>
<!-- build settings -->
<TargetFramework>net5.0</TargetFramework>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<EnableHarmony>true</EnableHarmony>
<BundleExtraAssemblies>System,ThirdParty</BundleExtraAssemblies>
<IgnoreModFilePatterns>
\.xcf$, <!-- GIMP files -->
System.*.dll$, <!-- System would bundle these. -->
^Microsoft, <!-- Everyone but MS.Toolkit.Diagnostics -->
^runtimes[/\\].*,
.*[/\\]Microsoft.*, <!-- CodeDiagnostics in a bunch of languages? -->
^JetBrains,<!-- Should never be bundled. -->
^Skia <!-- Skiasharp is included with the game -->
</IgnoreModFilePatterns>
<DefineConstants>NETESCAPADES_ENUMGENERATORS_EMBED_ATTRIBUTES</DefineConstants>
<!-- game version -->
<GameVersion>1.5.6</GameVersion>
<SmapiVersion>3.18</SmapiVersion>
</PropertyGroup>
<!-- paths -->
<PropertyGroup>
<GamePath>G:\Steam\steamapps\common\Stardew Valley 1.5.6</GamePath>
<GameModsPath>$(GamePath)/Mods - Build/$(Configuration)</GameModsPath>
<ModZipPath>$(GamePath)/Mods - Build/Archive</ModZipPath>
</PropertyGroup>
<!-- debug settings -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>false</Optimize>
<EnableModZip>true</EnableModZip>
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
</PropertyGroup>
<!-- release settings -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>true</Optimize>
<DebugType>embedded</DebugType>
</PropertyGroup>
<!-- third-party packages -->
<ItemGroup>
<PackageReference Include="Ardalis.SmartEnum" Version="2.1.0" />
<PackageReference Include="CommunityToolkit.Diagnostics" Version="8.0.0" />
<PackageReference Include="FastExpressionCompiler.LightExpression" Version="3.3.3" />
<PackageReference Include="JetBrains.Annotations" Version="2023.2.0" />
<PackageReference Include="Leclair.Stardew.ModManifestBuilder" Version="2.1.0" />
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" ExcludeAssets="all" />
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta04" PrivateAssets="all" ExcludeAssets="compile;runtime" />
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="4.1.1" />
<PackageReference Include="Pathoschild.Stardew.ModTranslationClassBuilder" Version="2.0.1" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<Reference Include="Newtonsoft.Json">
<HintPath>$(GamePath)\smapi-internal\Newtonsoft.Json.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup Condition="$(EnableTranslation) == 'True'">
<PackageReference Include="Pathoschild.Stardew.ModTranslationClassBuilder" Version="2.0.1" />
</ItemGroup>
<!-- mod dependencies -->
<ItemGroup>
<Reference Include="SpaceCore">
<HintPath>depend\SpaceCore.dll</HintPath>
<Private>false</Private>
</Reference>
<!--<Reference Include="GenericModConfigMenu">
<HintPath>dependencies\GenericModConfigMenu.dll</HintPath>
<Private>false</Private>
</Reference>-->
<!--
<Reference Include="SMAPI.Toolkit">
<HintPath>$(GamePath)\smapi-internal\Pintail.dll</HintPath>
<Private>false</Private>
</Reference>
-->
</ItemGroup>
<!-- shared projects -->
<Import Project="..\Shared\Shared.projitems" Label="Shared" Condition="Exists('..\Shared\Shared.projitems')" />
<!-- file exceptions -->
<ItemGroup>
<Compile Remove="resources\**" />
<EmbeddedResource Remove="resources\**" />
<None Remove="resources\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="depend\**" />
<EmbeddedResource Remove="depend\**" />
<None Remove="depend\**" />
</ItemGroup>
<ItemGroup>
<Compile Update="optional\**" />
<EmbeddedResource Update="optional\**" />
<None Update="optional\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<!-- global usings directives -->
<ItemGroup>
<Using Include="System" />
<Using Include="CommunityToolkit.Diagnostics" />
<Using Include="JetBrains.Annotations" />
<Using Include="StardewModdingAPI" />
<Using Include="StardewValley" />
<Using Alias="SObject" Include="StardewValley.Object" />
<Using Alias="Log" Include="DaLion.Shared.Log" />
</ItemGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties i18n_4default_1json__JsonSchema="https://datahubproject.io/schemas/datahub_ingestion_schema.json" />
</VisualStudio>
</ProjectExtensions>
</Project>