-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCheatAutoStore.csproj
More file actions
33 lines (31 loc) · 1.71 KB
/
Copy pathCheatAutoStore.csproj
File metadata and controls
33 lines (31 loc) · 1.71 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>CheatAutoStore</AssemblyName>
<Description>(Cheat) Auto Store</Description>
<Version>1.0.0.28</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<Platforms>AnyCPU</Platforms>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<Import Project="$(SolutionDir)\solution_private.targets" />
<ItemGroup>
<Compile Include="..\LibCommon\BepInExLoggerFix.cs" Link="BepInExLoggerFix.cs" />
<Compile Include="..\LibCommon\HarmonyIntegrityCheck.cs" Link="HarmonyIntegrityCheck.cs" />
<Compile Include="..\LibCommon\ModNetworking.cs" Link="ModNetworking.cs" />
<Compile Include="..\LibCommon\MainMenuMessage.cs" Link="MainMenuMessage.cs" />
<Compile Include="..\LibCommon\ModVersionCheck.cs" Link="ModVersionCheck.cs" />
<Compile Include="..\LibCommon\GameVersionCheck.cs" Link="GameVersionCheck.cs" />
</ItemGroup>
<Target Name="CopyDLLs" AfterTargets="Build">
<Copy SourceFiles="$(TargetDir)$(AssemblyName).dll" DestinationFolder="$(Destination1)" />
<Copy SourceFiles="$(TargetDir)$(AssemblyName).pdb" DestinationFolder="$(Destination1)" />
<Copy SourceFiles="$(TargetDir)$(AssemblyName).dll" DestinationFolder="$(TargetDir)\$(AssemblyName)\akarnokd - $(Description)" />
<Copy SourceFiles="$(TargetDir)$(AssemblyName).dll" DestinationFolder="$(OutputPath)\..\..\..\..\akarnokd-all\akarnokd - $(Description)" />
<ZipDirectory
SourceDirectory="$(TargetDir)\$(AssemblyName)"
DestinationFile="$(OutputPath)\..\..\..\..\akarnokd-$(AssemblyName).zip"
Overwrite="true" />
</Target>
</Project>