-
Notifications
You must be signed in to change notification settings - Fork 0
/
SkilledCarryWeight.csproj
76 lines (74 loc) · 3.16 KB
/
SkilledCarryWeight.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
<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>
<ItemGroup>
<Compile Remove="Package\plugins\**" />
<EmbeddedResource Remove="Package\plugins\**" />
<None Remove="Package\plugins\**" />
</ItemGroup>
<ItemGroup>
<Content Include="Package\icon.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JotunnLib" Version="2.21.3" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Publish\Nexus\" />
<Folder Include="Publish\ThunderStore\" />
</ItemGroup>
<PropertyGroup>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
</PropertyGroup>
<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>