Skip to content

Commit

Permalink
Adding a missing metapackage
Browse files Browse the repository at this point in the history
  • Loading branch information
darkl committed Jan 19, 2020
1 parent 107ebde commit 42eee56
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 5 deletions.
18 changes: 18 additions & 0 deletions src/netstandard/WampSharp.Default/WampSharp.Default.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<title>WampSharp.Default</title>
<description>WampSharp above Fleck, Newtonsoft.Json, NewtonsoftMessagePack, and System.Net.WebSockets</description>
<PackageTags>websockets wampws rpc pubsub fleck wampv2 json msgpack</PackageTags>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\WampSharp.Default.Client\WampSharp.Default.Client.csproj" />
<ProjectReference Include="..\WampSharp.Default.Router\WampSharp.Default.Router.csproj" />
</ItemGroup>

</Project>
28 changes: 23 additions & 5 deletions src/netstandard/WampSharp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,17 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.NewtonsoftCbor",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.Samples.AspNetCore.Router", "Samples\WAMP2\WampSharp.Samples.AspNetCore.Router\WampSharp.Samples.AspNetCore.Router.csproj", "{7B57E4CD-99B2-463B-A24F-2008D4515EB6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.CraClientSample", "Samples\WAMP1\WampSharp.CraClientSample\WampSharp.CraClientSample.csproj", "{9DC84D95-BC60-4E97-B882-D72612957548}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.CraClientSample", "Samples\WAMP1\WampSharp.CraClientSample\WampSharp.CraClientSample.csproj", "{9DC84D95-BC60-4E97-B882-D72612957548}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.CraServerSample", "Samples\WAMP1\WampSharp.CraServerSample\WampSharp.CraServerSample.csproj", "{62FB7CD5-00F6-4131-8623-53C2E44B8ABE}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.CraServerSample", "Samples\WAMP1\WampSharp.CraServerSample\WampSharp.CraServerSample.csproj", "{62FB7CD5-00F6-4131-8623-53C2E44B8ABE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.PubSubServerSample", "Samples\WAMP1\WampSharp.PubSubServerSample\WampSharp.PubSubServerSample.csproj", "{1CC3952F-22AB-4EDF-9A3D-6B2A47F96AFB}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.PubSubServerSample", "Samples\WAMP1\WampSharp.PubSubServerSample\WampSharp.PubSubServerSample.csproj", "{1CC3952F-22AB-4EDF-9A3D-6B2A47F96AFB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.RpcClientSample", "Samples\WAMP1\WampSharp.RpcClientSample\WampSharp.RpcClientSample.csproj", "{380AED0D-BF1F-4E0E-91D6-AEF79D6EEA16}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.RpcClientSample", "Samples\WAMP1\WampSharp.RpcClientSample\WampSharp.RpcClientSample.csproj", "{380AED0D-BF1F-4E0E-91D6-AEF79D6EEA16}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.RpcServerSample", "Samples\WAMP1\WampSharp.RpcServerSample\WampSharp.RpcServerSample.csproj", "{2C38F531-C060-4AEB-AB65-3F2BF412D19F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.RpcServerSample", "Samples\WAMP1\WampSharp.RpcServerSample\WampSharp.RpcServerSample.csproj", "{2C38F531-C060-4AEB-AB65-3F2BF412D19F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.Default", "WampSharp.Default\WampSharp.Default.csproj", "{5006AB4D-2677-4CEF-BFE4-63D258650C8F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -585,6 +587,22 @@ Global
{2C38F531-C060-4AEB-AB65-3F2BF412D19F}.Release|x64.Build.0 = Release|Any CPU
{2C38F531-C060-4AEB-AB65-3F2BF412D19F}.Release|x86.ActiveCfg = Release|Any CPU
{2C38F531-C060-4AEB-AB65-3F2BF412D19F}.Release|x86.Build.0 = Release|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|ARM.ActiveCfg = Debug|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|ARM.Build.0 = Debug|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|x64.ActiveCfg = Debug|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|x64.Build.0 = Debug|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|x86.ActiveCfg = Debug|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|x86.Build.0 = Debug|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|Any CPU.Build.0 = Release|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|ARM.ActiveCfg = Release|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|ARM.Build.0 = Release|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|x64.ActiveCfg = Release|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|x64.Build.0 = Release|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|x86.ActiveCfg = Release|Any CPU
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 42eee56

Please sign in to comment.