-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTwitchChat.csproj
30 lines (30 loc) · 1.13 KB
/
TwitchChat.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\references\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>TwitchChat</AssemblyName>
<TargetFramework>net472</TargetFramework>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.2</LangVersion>
</PropertyGroup>
<Target Name="BuildMod" AfterTargets="Build">
<Exec Command=""$(tMLBuildServerPath)" -build $(ProjectDir) -eac $(TargetPath) -define $(DefineConstants) -unsafe $(AllowUnsafeBlocks)" />
</Target>
<ItemGroup>
<Compile Remove="lib\**" />
<Compile Remove="MODULE_TEMPLATE\**" />
<Compile Remove="packages\**" />
<EmbeddedResource Remove="lib\**" />
<EmbeddedResource Remove="MODULE_TEMPLATE\**" />
<EmbeddedResource Remove="packages\**" />
<None Remove="lib\**" />
<None Remove="MODULE_TEMPLATE\**" />
<None Remove="packages\**" />
</ItemGroup>
<ItemGroup>
<Reference Include="Razorwing.Framework">
<HintPath>..\Razorwing.Framework\bin\Release\Razorwing.Framework.dll</HintPath>
</Reference>
<Reference Include="System.Net" />
</ItemGroup>
</Project>