Skip to content

Commit

Permalink
Binaries update
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkimmins committed Mar 11, 2023
1 parent f87add6 commit 4549e28
Show file tree
Hide file tree
Showing 72 changed files with 67 additions and 44 deletions.
Binary file added .vs/ProjectEvaluation/jsock.metadata.v2
Binary file not shown.
Binary file added .vs/ProjectEvaluation/jsock.projects.v2
Binary file not shown.
Binary file modified .vs/jSock/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file not shown.
Empty file.
Binary file modified .vs/jSock/v17/.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion jSock/Properties/PublishProfiles/FolderProfile.pubxml.user
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<History>True|2022-05-01T07:31:56.8937704Z;True|2022-05-01T08:30:49.6704974+01:00;True|2022-05-01T08:28:59.0472898+01:00;False|2022-02-03T11:27:05.6394928+00:00;</History>
<History>True|2023-03-11T08:41:23.7195294Z;True|2022-05-01T08:31:56.8937704+01:00;True|2022-05-01T08:30:49.6704974+01:00;True|2022-05-01T08:28:59.0472898+01:00;False|2022-02-03T11:27:05.6394928+00:00;</History>
</PropertyGroup>
</Project>
Binary file modified jSock/bin/Debug/jSock.2.0.0.nupkg
Binary file not shown.
Binary file modified jSock/bin/Debug/net6.0/jSock.dll
Binary file not shown.
Binary file modified jSock/bin/Debug/net6.0/jSock.pdb
Binary file not shown.
Binary file added jSock/bin/Release/jSock.2.0.1.nupkg
Binary file not shown.
4 changes: 2 additions & 2 deletions jSock/bin/Release/net6.0/jSock.deps.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"jSock/2.0.0": {
"jSock/2.0.1": {
"runtime": {
"jSock.dll": {}
}
}
}
},
"libraries": {
"jSock/2.0.0": {
"jSock/2.0.1": {
"type": "project",
"serviceable": false,
"sha512": ""
Expand Down
Binary file modified jSock/bin/Release/net6.0/jSock.dll
Binary file not shown.
Binary file modified jSock/bin/Release/net6.0/jSock.pdb
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions jSock/jSock.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageTags>websocket;server;c#;host;websockets</PackageTags>
<Copyright>© Copyright 2022 Jack Kimmins. All rights reserved.</Copyright>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<Version>2.0.0</Version>
<AssemblyVersion>2.0.1.0</AssemblyVersion>
<FileVersion>2.0.1.0</FileVersion>
<Version>2.0.1</Version>
<PackageLicenseExpression> Apache-2.0</PackageLicenseExpression>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions jSock/jSockServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ public class jSockServer
public string Address { get; } = "";
public int PORT { get; } = -1;

public jSockServer(string address, int pORT)
public jSockServer(string address, int port)
{
Address = address;
PORT = pORT;
PORT = port;
}

public char[] ClientID_CharSet { get; private set; } = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".ToCharArray();
Expand Down
6 changes: 3 additions & 3 deletions jSock/obj/Debug/net6.0/jSock.AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("© Copyright 2022 Jack Kimmins. All rights reserved.")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("My C# WebSocket Server")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.1.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.1")]
[assembly: System.Reflection.AssemblyProductAttribute("jSock")]
[assembly: System.Reflection.AssemblyTitleAttribute("jSock")]
[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("2.0.1.0")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/jackkimmins/jSock")]

// Generated by the MSBuild WriteCodeFragment class.
Expand Down
2 changes: 1 addition & 1 deletion jSock/obj/Debug/net6.0/jSock.AssemblyInfoInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
d9508f8ba53db6a4479bc5bfaa9d0fb73ebcf83b
ce349dd12ce8874c271a7dfab10d55d93447ea8b
Binary file modified jSock/obj/Debug/net6.0/jSock.assets.cache
Binary file not shown.
Binary file modified jSock/obj/Debug/net6.0/jSock.csproj.AssemblyReference.cache
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8ac89f9fd0e0a0b8894e92ab91af5e9323605ebd
b7ac21835d22df50e3339da39c317d1ab5cb99b3
Binary file modified jSock/obj/Debug/net6.0/jSock.dll
Binary file not shown.
Binary file modified jSock/obj/Debug/net6.0/jSock.pdb
Binary file not shown.
23 changes: 23 additions & 0 deletions jSock/obj/Release/jSock.2.0.1.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>jSock</id>
<version>2.0.1</version>
<authors>Jack Kimmins</authors>
<license type="expression">Apache-2.0</license>
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
<icon>jSockLogo.png</icon>
<projectUrl>https://github.com/jackkimmins/jSock</projectUrl>
<description>My C# WebSocket Server</description>
<copyright>© Copyright 2022 Jack Kimmins. All rights reserved.</copyright>
<tags>websocket server c# host websockets</tags>
<repository url="https://github.com/jackkimmins/jSock" />
<dependencies>
<group targetFramework="net6.0" />
</dependencies>
</metadata>
<files>
<file src="C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Release\net6.0\jSock.dll" target="lib\net6.0\jSock.dll" />
<file src="C:\Users\jackk\OneDrive\My Projects\jSock\jSockLogo.png" target="\jSockLogo.png" />
</files>
</package>
6 changes: 3 additions & 3 deletions jSock/obj/Release/net6.0/jSock.AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("© Copyright 2022 Jack Kimmins. All rights reserved.")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("My C# WebSocket Server")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.1.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.1")]
[assembly: System.Reflection.AssemblyProductAttribute("jSock")]
[assembly: System.Reflection.AssemblyTitleAttribute("jSock")]
[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("2.0.1.0")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/jackkimmins/jSock")]

// Generated by the MSBuild WriteCodeFragment class.
Expand Down
2 changes: 1 addition & 1 deletion jSock/obj/Release/net6.0/jSock.AssemblyInfoInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
d6cac38481157a0f9ba96840d6cc7749bf7f65c1
ecf804487c230094009d923226bffea64c8d3883
Binary file modified jSock/obj/Release/net6.0/jSock.assets.cache
Binary file not shown.
Binary file modified jSock/obj/Release/net6.0/jSock.csproj.AssemblyReference.cache
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5a8eb52b31ac7988653bbbd22fab6a04e0ebaf38
8b5a057af2209dc082ba0049cf2430a9ffd3b024
Binary file modified jSock/obj/Release/net6.0/jSock.dll
Binary file not shown.
Binary file modified jSock/obj/Release/net6.0/jSock.pdb
Binary file not shown.
Binary file modified jSock/obj/Release/net6.0/ref/jSock.dll
Binary file not shown.
Binary file modified jSock/obj/Release/net6.0/refint/jSock.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions jSock/obj/jSock.csproj.nuget.dgspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"projects": {
"C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSock\\jSock.csproj": {
"version": "2.0.0",
"version": "2.0.1",
"restore": {
"projectUniqueName": "C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSock\\jSock.csproj",
"projectName": "jSock",
Expand Down Expand Up @@ -54,7 +54,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.309\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jSock/obj/jSock.csproj.nuget.g.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\jackk\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\jackk\.nuget\packages\" />
Expand Down
4 changes: 2 additions & 2 deletions jSock/obj/project.assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"C:\\Users\\jackk\\.nuget\\packages\\": {}
},
"project": {
"version": "2.0.0",
"version": "2.0.1",
"restore": {
"projectUniqueName": "C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSock\\jSock.csproj",
"projectName": "jSock",
Expand Down Expand Up @@ -60,7 +60,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.309\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jSock/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "kf5uY9gJysdvvbc54SJBUWZEykJu97NJ01kB1XPDd9H4uBTpsZQY+fxhv6f3v+McmvzrZMg9fpPgDRcpjzuXTA==",
"dgSpecHash": "cFrgN8+2GDQxK/JkMLazke46rbBX5MPEd/WHP7kqdWHnFMNMymvjjDY+tCMFBYBFslSt2F/k64J8RsLayKS8ng==",
"success": true,
"projectFilePath": "C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSock\\jSock.csproj",
"expectedPackageFiles": [],
Expand Down
Binary file modified jSockNativeClientDemo/bin/Debug/net6.0/jSock.dll
Binary file not shown.
Binary file modified jSockNativeClientDemo/bin/Debug/net6.0/jSock.pdb
Binary file not shown.
Binary file modified jSockNativeClientDemo/bin/Debug/net6.0/jSockNativeClientDemo.dll
Binary file not shown.
Binary file not shown.
Binary file modified jSockNativeClientDemo/bin/Debug/net6.0/jSockNativeClientDemo.pdb
Binary file not shown.
Binary file modified jSockNativeClientDemo/obj/Debug/net6.0/apphost.exe
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6c1165d68c5bb8612374bebce4fe28f297ac19b4
6dc73b217336fd185fa856449ab5a8ae5a7506ee
Binary file modified jSockNativeClientDemo/obj/Debug/net6.0/jSockNativeClientDemo.dll
Binary file not shown.
Binary file modified jSockNativeClientDemo/obj/Debug/net6.0/jSockNativeClientDemo.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.309\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSock\\jSock.csproj": {
"version": "2.0.0",
"version": "2.0.1",
"restore": {
"projectUniqueName": "C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSock\\jSock.csproj",
"projectName": "jSock",
Expand Down Expand Up @@ -112,7 +112,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.309\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\jackk\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\jackk\.nuget\packages\" />
Expand Down
8 changes: 4 additions & 4 deletions jSockNativeClientDemo/obj/project.assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": 3,
"targets": {
"net6.0": {
"jSock/2.0.0": {
"jSock/2.0.1": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"compile": {
Expand All @@ -15,15 +15,15 @@
}
},
"libraries": {
"jSock/2.0.0": {
"jSock/2.0.1": {
"type": "project",
"path": "../jSock/jSock.csproj",
"msbuildProject": "../jSock/jSock.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0": [
"jSock >= 2.0.0"
"jSock >= 2.0.1"
]
},
"packageFolders": {
Expand Down Expand Up @@ -83,7 +83,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.309\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jSockNativeClientDemo/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "R6USyj5KtLvCbcVyBoH1XnjmRaRTESIOPorTupf9xx/0MaM4dRXaMtah70wsnBaZgEqfuJ80PTAHPgivg+DnKA==",
"dgSpecHash": "2deQEsMeDq6a3Kd2OxZFXahjOAvdv5GBWIC8oinjyThDwvNtaM+34WpZ0p2vzN5T0yQ/baFj/+jIGYKSNAwqcg==",
"success": true,
"projectFilePath": "C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSockNativeClientDemo\\jSockNativeClientDemo.csproj",
"expectedPackageFiles": [],
Expand Down
Binary file modified jSockServerDemo/bin/Debug/net6.0/jSock.dll
Binary file not shown.
Binary file modified jSockServerDemo/bin/Debug/net6.0/jSock.pdb
Binary file not shown.
Binary file modified jSockServerDemo/bin/Debug/net6.0/jSockServerDemo.dll
Binary file not shown.
Binary file modified jSockServerDemo/bin/Debug/net6.0/jSockServerDemo.exe
Binary file not shown.
Binary file modified jSockServerDemo/bin/Debug/net6.0/jSockServerDemo.pdb
Binary file not shown.
Binary file modified jSockServerDemo/obj/Debug/net6.0/apphost.exe
Binary file not shown.
Binary file modified jSockServerDemo/obj/Debug/net6.0/jSockServerDemo.assets.cache
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7b99540e1474406408f9ec396403b82418a19d5e
89f81788e2e84c0f4f93cc78b0999ae1a484f3a7
Binary file modified jSockServerDemo/obj/Debug/net6.0/jSockServerDemo.dll
Binary file not shown.
Binary file modified jSockServerDemo/obj/Debug/net6.0/jSockServerDemo.pdb
Binary file not shown.
Binary file modified jSockServerDemo/obj/Release/net6.0/jSockServerDemo.assets.cache
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions jSockServerDemo/obj/jSockServerDemo.csproj.nuget.dgspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.309\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSock\\jSock.csproj": {
"version": "2.0.0",
"version": "2.0.1",
"restore": {
"projectUniqueName": "C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSock\\jSock.csproj",
"projectName": "jSock",
Expand Down Expand Up @@ -112,7 +112,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.309\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jSockServerDemo/obj/jSockServerDemo.csproj.nuget.g.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\jackk\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\jackk\.nuget\packages\" />
Expand Down
8 changes: 4 additions & 4 deletions jSockServerDemo/obj/project.assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": 3,
"targets": {
"net6.0": {
"jSock/2.0.0": {
"jSock/2.0.1": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"compile": {
Expand All @@ -15,15 +15,15 @@
}
},
"libraries": {
"jSock/2.0.0": {
"jSock/2.0.1": {
"type": "project",
"path": "../jSock/jSock.csproj",
"msbuildProject": "../jSock/jSock.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0": [
"jSock >= 2.0.0"
"jSock >= 2.0.1"
]
},
"packageFolders": {
Expand Down Expand Up @@ -83,7 +83,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.309\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jSockServerDemo/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "8RdCH7fTGtIg6LCDvEMOVJP7ofg6zjBEcW+xaJIGmiVhpTi/p0g0nHVGUBzJxNLH1AUli+/QdvTno9faQm4OaA==",
"dgSpecHash": "mkBCd/M0z1R7Qo269X3juVfvMhtI80Tcx6wSPbKM1Z/rcply2yPXNJEjsGaqoXI1ZctRqLi9VQQ0cLM8jxXeBQ==",
"success": true,
"projectFilePath": "C:\\Users\\jackk\\OneDrive\\My Projects\\jSock\\jSockServerDemo\\jSockServerDemo.csproj",
"expectedPackageFiles": [],
Expand Down

0 comments on commit 4549e28

Please sign in to comment.