-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuernMessage.csproj
More file actions
33 lines (29 loc) · 1006 Bytes
/
Copy pathQuernMessage.csproj
File metadata and controls
33 lines (29 loc) · 1006 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.1.0</Version>
</PropertyGroup>
<ItemGroup>
<Reference Include="VintagestoryAPI">
<HintPath>$(VINTAGE_STORY)/VintagestoryAPI.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="0Harmony">
<HintPath>$(VINTAGE_STORY)/Lib/0Harmony.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Remove="QuernMessage.Tests/**" />
</ItemGroup>
<ItemGroup>
<None Include="modinfo.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="Package" AfterTargets="PostBuildEvent">
<MakeDir Directories="$(ProjectDir)Releases" />
<ZipDirectory SourceDirectory="$(TargetDir)" DestinationFile="$(ProjectDir)Releases/$(ProjectName)_v$(Version).zip" Overwrite="true" />
</Target>
</Project>