-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLazySearch.csproj
More file actions
48 lines (44 loc) · 1.72 KB
/
LazySearch.csproj
File metadata and controls
48 lines (44 loc) · 1.72 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin\$(Configuration)\Mods\mod</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="VintagestoryAPI">
<HintPath>$(VINTAGE_STORY)/VintagestoryAPI.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="VintagestoryAPI">
<HintPath>$(VINTAGE_STORY)/Mods/VSEssentials.dll</HintPath>
<Private>false</Private>
</Reference>
<!-- <Reference Include="VintagestoryAPI">
<HintPath>$(VINTAGE_STORY)/Mods/VSSurvivalMod.dll</HintPath>
<Private>false</Private>
</Reference> -->
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<None Include="LICENSE" CopyToOutputDirectory="PreserveNewest" />
<None Include="resources/**">
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="modinfo.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="modicon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="LICENSE">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Target Name="Package" AfterTargets="PostBuildEvent" Condition="'$(Configuration)' == 'Release'">
<Delete Files="$(TargetDir)$(TargetName).pdb" />
<Delete Files="$(TargetDir)assets/.gitkeep" />
<ZipDirectory DestinationFile="bin/$(TargetName)_VS1.20.4_$(TargetFramework)_v1.2.7.zip" SourceDirectory="$(TargetDir)" Overwrite="true" />
</Target>
</Project>