Skip to content

Commit

Permalink
Started work on a native jSock client for C#
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkimmins committed Apr 28, 2022
1 parent 8e0996a commit 807f991
Show file tree
Hide file tree
Showing 105 changed files with 754 additions and 19 deletions.
Binary file modified .vs/jSock/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file modified .vs/jSock/v17/.futdcache.v1
Binary file not shown.
Binary file modified .vs/jSock/v17/.suo
Binary file not shown.
10 changes: 8 additions & 2 deletions jSock.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32112.339
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "jSock", "jSock\jSock.csproj", "{C39D265A-207A-48E5-9C83-13D4FF67AE6D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "jSock", "jSock\jSock.csproj", "{C39D265A-207A-48E5-9C83-13D4FF67AE6D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "jSockServerDemo", "jSockServerDemo\jSockServerDemo.csproj", "{4B6EFA4A-88A4-4AD5-A5D1-AEBDB8E2DF7E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "jSockServerDemo", "jSockServerDemo\jSockServerDemo.csproj", "{4B6EFA4A-88A4-4AD5-A5D1-AEBDB8E2DF7E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "jSockNativeClientDemo", "jSockNativeClientDemo\jSockNativeClientDemo.csproj", "{42DC883A-D173-42A7-9435-6695FF1682F7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -21,6 +23,10 @@ Global
{4B6EFA4A-88A4-4AD5-A5D1-AEBDB8E2DF7E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4B6EFA4A-88A4-4AD5-A5D1-AEBDB8E2DF7E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4B6EFA4A-88A4-4AD5-A5D1-AEBDB8E2DF7E}.Release|Any CPU.Build.0 = Release|Any CPU
{42DC883A-D173-42A7-9435-6695FF1682F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{42DC883A-D173-42A7-9435-6695FF1682F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{42DC883A-D173-42A7-9435-6695FF1682F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42DC883A-D173-42A7-9435-6695FF1682F7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
14 changes: 14 additions & 0 deletions jSock/Properties/PublishProfiles/FolderProfile.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net6.0\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>net6.0</TargetFramework>
<SelfContained>false</SelfContained>
</PropertyGroup>
</Project>
9 changes: 9 additions & 0 deletions jSock/Properties/PublishProfiles/FolderProfile.pubxml.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<History>False|2022-02-03T11:27:05.6394928Z;</History>
</PropertyGroup>
</Project>
Binary file added jSock/bin/Debug/jSock.1.0.0.nupkg
Binary file not shown.
21 changes: 21 additions & 0 deletions jSock/bin/Debug/net6.0/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Jack Kimmins

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
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 removed jSock/bin/Debug/net6.0/ref/jSock.dll
Binary file not shown.
23 changes: 23 additions & 0 deletions jSock/bin/Release/net6.0/jSock.deps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"jSock/1.0.0": {
"runtime": {
"jSock.dll": {}
}
}
}
},
"libraries": {
"jSock/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
Binary file added jSock/bin/Release/net6.0/jSock.dll
Binary file not shown.
Binary file added jSock/bin/Release/net6.0/jSock.pdb
Binary file not shown.
Binary file added jSock/bin/Release/net6.0/ref/jSock.dll
Binary file not shown.
16 changes: 16 additions & 0 deletions jSock/jSock.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Authors>Jack Kimmins</Authors>
<Company>Stable Network</Company>
<Description>My C# WebSocket Server</Description>
<PackageProjectUrl>https://github.com/jackkimmins/jSock</PackageProjectUrl>
<PackageIcon>jSockLogo.png</PackageIcon>
<RepositoryUrl>https://github.com/jackkimmins/jSock</RepositoryUrl>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageTags>websocket;server;c#;host;websockets</PackageTags>
<PackageLicenseFile></PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\jSockLogo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions jSock/jSock.csproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LastSelectedProfileId>C:\Users\jackk\OneDrive\My Projects\jSock\jSock\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
</PropertyGroup>
</Project>
98 changes: 98 additions & 0 deletions jSock/jSockClient.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.WebSockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace jSock;

public class jSockClient : IDisposable
{

public int ReceiveBufferSize { get; set; } = 8192;

public async Task ConnectAsync(string url)
{
if (WS != null)
{
if (WS.State == WebSocketState.Open) return;
else WS.Dispose();
}
WS = new ClientWebSocket();
if (CTS != null) CTS.Dispose();
CTS = new CancellationTokenSource();
await WS.ConnectAsync(new Uri(url), CTS.Token);
await Task.Factory.StartNew(ReceiveLoop, CTS.Token, TaskCreationOptions.LongRunning, TaskScheduler.Default);
}

public async Task DisconnectAsync()
{
if (WS is null) return;
// TODO: requests cleanup code, sub-protocol dependent.
if (WS.State == WebSocketState.Open)
{
CTS.CancelAfter(TimeSpan.FromSeconds(2));
await WS.CloseOutputAsync(WebSocketCloseStatus.Empty, "", CancellationToken.None);
await WS.CloseAsync(WebSocketCloseStatus.NormalClosure, "", CancellationToken.None);
}
WS.Dispose();
WS = null;
CTS.Dispose();
CTS = null;
}

private async Task ReceiveLoop()
{
var loopToken = CTS.Token;
MemoryStream outputStream = null;
WebSocketReceiveResult receiveResult = null;
var buffer = new byte[ReceiveBufferSize];
try
{
while (!loopToken.IsCancellationRequested)
{
outputStream = new MemoryStream(ReceiveBufferSize);
do
{
receiveResult = await WS.ReceiveAsync(buffer, CTS.Token);
if (receiveResult.MessageType != WebSocketMessageType.Close)
outputStream.Write(buffer, 0, receiveResult.Count);
}
while (!receiveResult.EndOfMessage);
if (receiveResult.MessageType == WebSocketMessageType.Close) break;
outputStream.Position = 0;
ResponseReceived(outputStream);
}
}
catch (TaskCanceledException) { }
finally
{
outputStream?.Dispose();
}
}

public async Task SendMessageAsync(string message)
{
var buffer = new ArraySegment<byte>(Encoding.UTF8.GetBytes(message));
await WS.SendAsync(buffer, WebSocketMessageType.Text, true, CTS.Token);
}

private void ResponseReceived(Stream inputStream)
{
var reader = new StreamReader(inputStream);
var response = reader.ReadToEnd();
Console.WriteLine(response);


inputStream.Dispose();
}

public void Dispose() => DisconnectAsync().Wait();

private ClientWebSocket WS;
private CancellationTokenSource CTS;

}
20 changes: 20 additions & 0 deletions jSock/obj/Debug/jSock.1.0.0.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>jSock</id>
<version>1.0.0</version>
<authors>Jack Kimmins</authors>
<icon>jSockLogo.png</icon>
<projectUrl>https://github.com/jackkimmins/jSock</projectUrl>
<description>My C# WebSocket Server</description>
<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\Debug\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>
4 changes: 3 additions & 1 deletion jSock/obj/Debug/net6.0/jSock.AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@
using System;
using System.Reflection;

[assembly: System.Reflection.AssemblyCompanyAttribute("jSock")]
[assembly: System.Reflection.AssemblyCompanyAttribute("Stable Network")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("My C# WebSocket Server")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("jSock")]
[assembly: System.Reflection.AssemblyTitleAttribute("jSock")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/jackkimmins/jSock")]

// Generated by the MSBuild WriteCodeFragment class.

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 @@
4ff1f6580e2e4fdb6cfe047dd705314b561b7fcc
50638fa58ba5cbdce9cefe8028ad94301dd253d5
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.
Empty file.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
749f8eda90b755fad0936193b26219ab3c7975b3
8ac89f9fd0e0a0b8894e92ab91af5e9323605ebd
2 changes: 1 addition & 1 deletion jSock/obj/Debug/net6.0/jSock.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Debug\net6.0\jSock.deps.json
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Debug\net6.0\jSock.dll
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Debug\net6.0\ref\jSock.dll
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Debug\net6.0\jSock.pdb
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Debug\net6.0\jSock.csproj.AssemblyReference.cache
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Debug\net6.0\jSock.GeneratedMSBuildEditorConfig.editorconfig
Expand All @@ -10,3 +9,4 @@ C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Debug\net6.0\jSock.csproj.Co
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Debug\net6.0\jSock.dll
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Debug\net6.0\ref\jSock.dll
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Debug\net6.0\jSock.pdb
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Debug\net6.0\refint\jSock.dll
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.
Binary file modified jSock/obj/Debug/net6.0/ref/jSock.dll
Binary file not shown.
Binary file added jSock/obj/Debug/net6.0/refint/jSock.dll
Binary file not shown.
22 changes: 22 additions & 0 deletions jSock/obj/Release/jSock.1.0.0.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>jSock</id>
<version>1.0.0</version>
<authors>Jack Kimmins</authors>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="file">C:\Users\jackk\OneDrive\My Projects\jSock\LICENSE</license>
<licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl>
<icon>jSockLogo.png</icon>
<projectUrl>https://github.com/jackkimmins/jSock</projectUrl>
<description>My C# WebSocket Server</description>
<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>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
25 changes: 25 additions & 0 deletions jSock/obj/Release/net6.0/jSock.AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Reflection;

[assembly: System.Reflection.AssemblyCompanyAttribute("Stable Network")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("My C# WebSocket Server")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("jSock")]
[assembly: System.Reflection.AssemblyTitleAttribute("jSock")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/jackkimmins/jSock")]

// Generated by the MSBuild WriteCodeFragment class.

1 change: 1 addition & 0 deletions jSock/obj/Release/net6.0/jSock.AssemblyInfoInputs.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4626cc4aec7a066dcaeb864c624b79e53e8b54d0
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = jSock
build_property.ProjectDir = C:\Users\jackk\OneDrive\My Projects\jSock\jSock\
8 changes: 8 additions & 0 deletions jSock/obj/Release/net6.0/jSock.GlobalUsings.g.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
Binary file added jSock/obj/Release/net6.0/jSock.assets.cache
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
288ed48dc5ec7b4b7b223a888ac658059d297285
12 changes: 12 additions & 0 deletions jSock/obj/Release/net6.0/jSock.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Release\net6.0\jSock.deps.json
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Release\net6.0\jSock.dll
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Release\net6.0\ref\jSock.dll
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\bin\Release\net6.0\jSock.pdb
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Release\net6.0\jSock.csproj.AssemblyReference.cache
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Release\net6.0\jSock.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Release\net6.0\jSock.AssemblyInfoInputs.cache
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Release\net6.0\jSock.AssemblyInfo.cs
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Release\net6.0\jSock.csproj.CoreCompileInputs.cache
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Release\net6.0\jSock.dll
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Release\net6.0\ref\jSock.dll
C:\Users\jackk\OneDrive\My Projects\jSock\jSock\obj\Release\net6.0\jSock.pdb
Binary file added jSock/obj/Release/net6.0/jSock.dll
Binary file not shown.
Binary file added jSock/obj/Release/net6.0/jSock.pdb
Binary file not shown.
Binary file added jSock/obj/Release/net6.0/ref/jSock.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion jSock/obj/jSock.csproj.nuget.dgspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\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.0.1</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\jackk\.nuget\packages\" />
Expand Down
Loading

0 comments on commit 807f991

Please sign in to comment.