forked from ScottWilson0903/SigilADay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SigilADay_julianperge.csproj
60 lines (49 loc) · 2.21 KB
/
SigilADay_julianperge.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Collection of custom sigils</Description>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>SigilADay_julianperge</AssemblyName>
<RootNamespace>SigilADay_julianperge</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Analyzers" Version="1.0.7" PrivateAssets="all" />
<PackageReference Include="BepInEx.Core" Version="5.4.16" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.1.0" />
<PackageReference Include="UnityEngine.Modules" Version="2019.4.24" IncludeAssets="compile" />
</ItemGroup>
<ItemGroup>
<Reference Include="API">
<HintPath>lib\API.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>lib\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="Sirenix.Serialization">
<HintPath>lib\Sirenix.Serialization.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Target Name="CopyDLLs" AfterTargets="Build">
<Message Text="Executing CopyDLLs task" Importance="High" />
<Copy SourceFiles="$(TargetDir)$(ProjectName).dll;" DestinationFolder="C:\r2modman\Inscryption\profiles\Default\BepInEx\plugins\" />
<Copy Condition="Exists('C:\DEVELOPER\InscryptionMods\lib\')" SourceFiles="$(TargetDir)$(ProjectName).dll" DestinationFolder="C:\DEVELOPER\InscryptionMods\lib\" />
<Message Text="Copied build files" Importance="High" />
</Target>
<Target Name="ZipFiles" AfterTargets="Build">
<Exec Command="7z a -tzip SigilADay-JulianPerge.zip .\README.md .\manifest.json .\icon.png .\bin\Debug\netstandard2.0\SigilADay_julianperge.dll" />
</Target>
</Project>