-
Notifications
You must be signed in to change notification settings - Fork 40
/
Directory.Build.props
45 lines (45 loc) · 2.26 KB
/
Directory.Build.props
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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\Common\Common.projitems" Label="Shared" />
<PropertyGroup>
<Authors>LeFauxMatt</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/LeFauxMatt/StardewMods</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<BaseManifest>new</BaseManifest>
<MinimumGameVersion>1.6.14</MinimumGameVersion>
<MinimumApiVersion_Behavior>Update</MinimumApiVersion_Behavior>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<EnableModZip Condition="'$(Configuration)' == 'Debug'">False</EnableModZip>
<ModZipPath>$(SolutionDir)\releases</ModZipPath>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<Version_AppendConfiguration>false</Version_AppendConfiguration>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="4.3.2" />
<PackageReference Include="Leclair.Stardew.ModManifestBuilder" Version="2.4.0" />
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta11" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<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>
<Compile Include="$(SolutionDir)\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
<Using Include="JetBrains.Annotations" />
<Using Include="StardewValley" />
<Using Include="StardewModdingAPI" />
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Alias="Container" Include="SimpleInjector.Container" />
<Using Alias="Object" Include="System.Object" />
<Using Alias="SObject" Include="StardewValley.Object" />
</ItemGroup>
</Project>