Skip to content

Commit 5e8f807

Browse files
committed
Added solution and project files in VS2019 format, targeting .NET Standard 2.0 (netstandard2.0) and .NET Framework 4.5.2 (net452)
1 parent a8013aa commit 5e8f807

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Ignore build results and temporary files.
22

3+
.vs
4+
35
Backup*
46
_UpgradeReport_Files
57
bin

WebSocketSharp.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31005.135
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebSocketSharp", "websocket-sharp\WebSocketSharp.csproj", "{9819518E-D926-48CA-8636-AAECFC2CB654}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{9819518E-D926-48CA-8636-AAECFC2CB654}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{9819518E-D926-48CA-8636-AAECFC2CB654}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{9819518E-D926-48CA-8636-AAECFC2CB654}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{9819518E-D926-48CA-8636-AAECFC2CB654}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {B178666C-9436-4B3C-AD94-83CA3E4F751E}
24+
EndGlobalSection
25+
EndGlobal

websocket-sharp/WebSocketSharp.csproj

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
5+
<AssemblyName>WebSocketSharp</AssemblyName>
6+
<RootNamespace>WebSocketSharp</RootNamespace>
7+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
8+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9+
<Deterministic>false</Deterministic>
10+
</PropertyGroup>
11+
12+
<PropertyGroup>
13+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
14+
</PropertyGroup>
15+
16+
<ItemGroup>
17+
<Compile Remove="doc\**" />
18+
<EmbeddedResource Remove="doc\**" />
19+
<None Remove="doc\**" />
20+
</ItemGroup>
21+
22+
<ItemGroup>
23+
<None Remove="websocket-sharp.snk" />
24+
</ItemGroup>
25+
26+
</Project>

0 commit comments

Comments
 (0)