forked from sta/websocket-sharp
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathExample1.csproj
More file actions
25 lines (21 loc) · 811 Bytes
/
Example1.csproj
File metadata and controls
25 lines (21 loc) · 811 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net35|AnyCPU'">
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net35;net40;net45</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<SignAssembly>True</SignAssembly>
<AssemblyName>example1</AssemblyName>
<RootNamespace>Example1</RootNamespace>
<ApplicationIcon />
<OutputTypeEx>Exe</OutputTypeEx>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\websocket-sharp\websocket-sharp.csproj" />
</ItemGroup>
</Project>