-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProxify.csproj
39 lines (33 loc) · 1.11 KB
/
Proxify.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
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net4.7.2</TargetFramework>
<RootNamespace>Proxify</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AssemblyName>Proxify</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony">
<HintPath>SymlinkedLibraries\0Harmony.dll</HintPath>
</Reference>
<Reference Include="BaseX">
<HintPath>SymlinkedLibraries\BaseX.dll</HintPath>
</Reference>
<Reference Include="CodeX">
<HintPath>SymlinkedLibraries\CodeX.dll</HintPath>
</Reference>
<Reference Include="FrooxEngine">
<HintPath>SymlinkedLibraries\FrooxEngine.dll</HintPath>
</Reference>
<Reference Include="NeosModLoader">
<HintPath>SymlinkedLibraries\NeosModLoader.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>SymlinkedLibraries\UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
</Project>