-
Notifications
You must be signed in to change notification settings - Fork 1
/
ExtraSnapPointsMadeEasy.csproj
96 lines (85 loc) · 3.76 KB
/
ExtraSnapPointsMadeEasy.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<NuGetPackages>$(UserProfile)\.nuget\packages</NuGetPackages>
<JotunnProps>$(NuGetPackages)\jotunnlib\2.21.3\build\JotunnLib.props</JotunnProps>
</PropertyGroup>
<!--<Import Project="environment.props" Condition="Exists('environment.props')" />-->
<Import Project="$(JotunnProps)" Condition="Exists('$(JotunnProps)')" />
<Import Project="ModPackageTool.targets" Condition="Exists('ModPackageTool.targets')" />
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<!--<LangVersion>latest</LangVersion>-->
<!--<LangVersion>preview</LangVersion>-->
<LangVersion>10.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>$(DefineConstants);DefineConstants;TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>
</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<StartAction>Program</StartAction>
<StartProgram>$(VALHEIM_INSTALL)\valheim.exe</StartProgram>
<StartArguments>-console</StartArguments>
<StartWorkingDirectory>$(VALHEIM_INSTALL)</StartWorkingDirectory>
</PropertyGroup>
<PropertyGroup>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<Content Include="README.md" />
</ItemGroup>
<ItemGroup>
<Folder Include="Libraries" />
<Folder Include="Libraries\Debug\" />
<Folder Include="Package\" />
<Folder Include="Publish\Nexus\" />
<Folder Include="Publish\ThunderStore\" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HarmonyX" Version="2.9.0" />
<!--<PackageReference Include="JotunnLib" Version="2.14.6" />-->
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
<PackageReference Include="MonoMod" Version="21.9.19.1" />
<PackageReference Include="MonoMod.RuntimeDetour" Version="22.1.29.1" />
<PackageReference Include="MonoMod.Utils" Version="22.1.29.1" />
<!--<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>-->
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('$(JotunnProps)')" Text="$([System.String]::Format('$(ErrorText)', '$(JotunnProps)'))" />
</Target>
</Project>