-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRazorwing.RPC.csproj
32 lines (32 loc) · 1.12 KB
/
Razorwing.RPC.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\references\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>Razorwing</AssemblyName>
<TargetFramework>net47</TargetFramework>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
<RootNamespace>Razorwing</RootNamespace>
</PropertyGroup>
<Target Name="BuildMod" AfterTargets="Build">
<Exec Command=""$(tMLBuildServerPath)" -build $(ProjectDir) -eac $(TargetPath) -define "$(DefineConstants)" -unsafe $(AllowUnsafeBlocks)" />
</Target>
<ItemGroup>
<Compile Remove="Entry.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="tModLoader.CodeAssist" Version="0.1.*" />
</ItemGroup>
<ItemGroup>
<None Update="RPC\RPCExtensions.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>RPCExtensions.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>