-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStowage.csproj
More file actions
61 lines (54 loc) · 2.38 KB
/
Copy pathStowage.csproj
File metadata and controls
61 lines (54 loc) · 2.38 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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Release metadata lives in resources/modinfo.json. -->
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<AssemblyName>Stowage</AssemblyName>
<RootNamespace>Stowage</RootNamespace>
<PathMap>$(MSBuildProjectDirectory)=/_/</PathMap>
<!-- Don't copy game DLLs into output -->
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<!-- Path to Vintage Story installation -->
<VintageStoryDir Condition="'$(VINTAGE_STORY)' != ''">$(VINTAGE_STORY)</VintageStoryDir>
<VintageStoryDir Condition="'$(VintageStoryDir)' == ''">$(AppData)\Vintagestory</VintageStoryDir>
</PropertyGroup>
<!-- Game assemblies. Not redistributed -->
<ItemGroup>
<Reference Include="VintagestoryAPI">
<HintPath>$(VintageStoryDir)\VintagestoryAPI.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="VintagestoryLib">
<HintPath>$(VintageStoryDir)\VintagestoryLib.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="VSSurvivalMod">
<HintPath>$(VintageStoryDir)\Mods\VSSurvivalMod.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="VSEssentials">
<HintPath>$(VintageStoryDir)\Mods\VSEssentials.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>$(VintageStoryDir)\Lib\Newtonsoft.Json.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="0Harmony">
<HintPath>$(VintageStoryDir)\Lib\0Harmony.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="resources\modinfo.json" Link="modinfo.json" CopyToOutputDirectory="PreserveNewest" />
<None Include="resources\modicon.png" Link="modicon.png" CopyToOutputDirectory="PreserveNewest" Condition="Exists('resources\modicon.png')" />
<None Include="resources\assets\**\*" Link="assets\%(RecursiveDir)%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Folder Include="Releases\" />
</ItemGroup>
</Project>