-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundsOfNature.csproj
More file actions
36 lines (32 loc) · 1.2 KB
/
Copy pathSoundsOfNature.csproj
File metadata and controls
36 lines (32 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AllowMissingPrunePackageData>true</AllowMissingPrunePackageData>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin\Debug\Mods\SoundsOfNature</OutputPath>
<VINTAGE_STORY_PATH>/home/deftones/Apps/vintagestory</VINTAGE_STORY_PATH>
</PropertyGroup>
<ItemGroup>
<Reference Include="VintagestoryAPI">
<HintPath>$(VINTAGE_STORY_PATH)/VintagestoryAPI.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="VintagestoryLib">
<HintPath>$(VINTAGE_STORY_PATH)/VintagestoryLib.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="VSEssentials">
<HintPath>$(VINTAGE_STORY_PATH)/Mods/VSEssentials.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>$(VINTAGE_STORY_PATH)/Lib/Newtonsoft.Json.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include="modinfo.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>