-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaperMod.csproj
23 lines (23 loc) · 1.02 KB
/
PaperMod.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="Current">
<Import Project="..\..\references\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>PaperMod</AssemblyName>
<TargetFramework>net45</TargetFramework>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.2</LangVersion>
<FileUpgradeFlags>40</FileUpgradeFlags>
<UpgradeBackupLocation>C:\Users\Papermaker\Documents\My Games\Terraria\ModLoader\Mod Sources\PaperMod\Backup1\</UpgradeBackupLocation>
<OldToolsVersion>Current</OldToolsVersion>
</PropertyGroup>
<Target Name="BuildMod" AfterTargets="Build">
<Exec Command=""$(tMLBuildServerPath)" -build $(ProjectDir) -eac $(TargetPath) -define "$(DefineConstants)" -unsafe $(AllowUnsafeBlocks)" />
</Target>
<ItemGroup>
<PackageReference Include="tModLoader.CodeAssist" Version="0.1.*" />
</ItemGroup>
<ItemGroup>
<Folder Include="Items\Developer\Flareguy\" />
<Folder Include="Necro\Armor\" />
</ItemGroup>
</Project>