forked from pipesocks/ssr868
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsocks5.csproj
53 lines (53 loc) · 2.25 KB
/
socks5.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{E804010C-28BA-4872-8D0B-8CEE06B446DC}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Exe</OutputType>
<AssemblyName>socks5</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="a.cs" />
<Compile Include="b.cs" />
<Compile Include="c.cs" />
<Compile Include="d.cs" />
<Compile Include="DotfuscatorAttribute.cs" />
<Compile Include="e.cs" />
<Compile Include="f.cs" />
<Compile Include="g.cs" />
<Compile Include="h.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="socks5.Controller\Analyzer.cs" />
<Compile Include="socks5.Controller\CallbackState.cs" />
<Compile Include="socks5.Controller\IHandler.cs" />
<Compile Include="socks5.Controller\Logging.cs" />
<Compile Include="socks5.Controller\LogLevel.cs" />
<Compile Include="socks5.Controller\ProxySocketTun.cs" />
<Compile Include="socks5.Controller\ProxySocketTunLocal.cs" />
<Compile Include="socks5.Controller\StreamWriterWithTimestamp.cs" />
<Compile Include="socks5.Model\Configuration.cs" />
<Compile Include="socks5.Model\LRUCache.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>