-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
29 lines (24 loc) · 1.06 KB
/
Directory.Build.props
File metadata and controls
29 lines (24 loc) · 1.06 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
<Project>
<!-- Assembly-related settings. -->
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<DebugType Condition="$(Configuration) != 'Release'">pdbonly</DebugType>
<LangVersion>12</LangVersion>
</PropertyGroup>
<!-- ModBuildConfig-related settings. -->
<PropertyGroup>
<ModZipPath Condition="'$(ModZipPath)' == ''">$(SolutionDir)Release\Zip</ModZipPath>
<EnableModZip Condition="'$(Configuration)' == 'Debug' ">False</EnableModZip>
<IgnoreModFilePatterns>\.aseprite$</IgnoreModFilePatterns>
</PropertyGroup>
<!-- ModManifestBuilder-related settings. -->
<PropertyGroup>
<Authors>DecidedlyHuman</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="4.4.0"/>
<PackageReference Include="Pathoschild.Stardew.ModTranslationClassBuilder" Version="2.2.0"/>
<PackageReference Include="Leclair.Stardew.ModManifestBuilder" Version="2.3.1"/>
</ItemGroup>
</Project>