-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectT.csproj
More file actions
36 lines (36 loc) · 1.42 KB
/
Copy pathProjectT.csproj
File metadata and controls
36 lines (36 loc) · 1.42 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
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\references\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>ProjectT</AssemblyName>
<TargetFramework>net472</TargetFramework>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
</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>
<Reference Include="Microsoft.Extensions.Logging.Abstractions">
<HintPath>lib\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Client">
<HintPath>lib\TwitchLib.Client.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Client.Enums">
<HintPath>lib\TwitchLib.Client.Enums.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Client.Models">
<HintPath>lib\TwitchLib.Client.Models.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Communication">
<HintPath>lib\TwitchLib.Communication.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.PubSub">
<HintPath>lib\TwitchLib.PubSub.dll</HintPath>
</Reference>
</ItemGroup>
</Project>