-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#61: convert ConsoleClient to .NET core build system
- Loading branch information
Showing
9 changed files
with
133 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
152 changes: 0 additions & 152 deletions
152
examples/JabberNet.ConsoleClient/JabberNet.ConsoleClient.csproj
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
examples/JabberNet.ConsoleClient/JabberNet.ConsoleClient.xproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0.25420" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0.25420</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>3fd358a4-8603-4306-bb78-e6d92c6935b0</ProjectGuid> | ||
<RootNamespace>JabberNet.ConsoleClient</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"version": "1.0.0-*", | ||
"buildOptions": { | ||
"debugType": "portable", | ||
"emitEntryPoint": true | ||
}, | ||
"frameworks": { | ||
"net40": {} | ||
}, | ||
"dependencies": { | ||
"JabberNet": "*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"locked": false, | ||
"version": 2, | ||
"targets": { | ||
".NETFramework,Version=v4.0": { | ||
"zlib.net/1.0.4": { | ||
"type": "package", | ||
"compile": { | ||
"lib/zlib.net.dll": {} | ||
}, | ||
"runtime": { | ||
"lib/zlib.net.dll": {} | ||
} | ||
}, | ||
"JabberNet/2.1.2": { | ||
"type": "project", | ||
"framework": ".NETFramework,Version=v4.0", | ||
"dependencies": { | ||
"JabberNet.Netlib.Dns": "1.0.0", | ||
"zlib.net": "1.0.4" | ||
}, | ||
"frameworkAssemblies": [ | ||
"System.Drawing", | ||
"System.Security", | ||
"System.Xml" | ||
], | ||
"compile": { | ||
"net40/JabberNet.dll": {} | ||
}, | ||
"runtime": { | ||
"net40/JabberNet.dll": {} | ||
} | ||
}, | ||
"JabberNet.Netlib.Dns/2.1.2": { | ||
"type": "project", | ||
"framework": ".NETFramework,Version=v4.0", | ||
"compile": { | ||
"net40/JabberNet.Netlib.Dns.dll": {} | ||
}, | ||
"runtime": { | ||
"net40/JabberNet.Netlib.Dns.dll": {} | ||
} | ||
} | ||
} | ||
}, | ||
"libraries": { | ||
"zlib.net/1.0.4": { | ||
"sha512": "ywKkVY1y20tGQsUnYgKupYm91L8GVrVgoEOFTjfR1Bb5Xiy5tBJu5SV9liIiW2h8/KQUBefE45vSythtNMmahQ==", | ||
"type": "package", | ||
"path": "zlib.net/1.0.4", | ||
"files": [ | ||
"lib/zlib.net.dll", | ||
"zlib.net.1.0.4.nupkg.sha512", | ||
"zlib.net.nuspec" | ||
] | ||
}, | ||
"JabberNet/2.1.2": { | ||
"type": "project", | ||
"path": "../../src/JabberNet/project.json", | ||
"msbuildProject": "../../src/JabberNet/JabberNet.xproj" | ||
}, | ||
"JabberNet.Netlib.Dns/2.1.2": { | ||
"type": "project", | ||
"path": "../../src/JabberNet.Netlib.Dns/project.json", | ||
"msbuildProject": "../../src/JabberNet.Netlib.Dns/JabberNet.Netlib.Dns.xproj" | ||
} | ||
}, | ||
"projectFileDependencyGroups": { | ||
"": [ | ||
"JabberNet" | ||
], | ||
".NETFramework,Version=v4.0": [] | ||
}, | ||
"tools": {}, | ||
"projectFileToolGroups": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"projects": [ | ||
"examples", | ||
"src", | ||
"tests" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters