Skip to content

Commit 42eee56

Browse files
committed
Adding a missing metapackage
1 parent 107ebde commit 42eee56

File tree

2 files changed

+41
-5
lines changed

2 files changed

+41
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net461;netstandard2.0;netstandard2.1</TargetFrameworks>
5+
</PropertyGroup>
6+
<PropertyGroup>
7+
<title>WampSharp.Default</title>
8+
<description>WampSharp above Fleck, Newtonsoft.Json, NewtonsoftMessagePack, and System.Net.WebSockets</description>
9+
<PackageTags>websockets wampws rpc pubsub fleck wampv2 json msgpack</PackageTags>
10+
<IncludeBuildOutput>false</IncludeBuildOutput>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<ProjectReference Include="..\WampSharp.Default.Client\WampSharp.Default.Client.csproj" />
15+
<ProjectReference Include="..\WampSharp.Default.Router\WampSharp.Default.Router.csproj" />
16+
</ItemGroup>
17+
18+
</Project>

src/netstandard/WampSharp.sln

+23-5
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,17 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.NewtonsoftCbor",
7777
EndProject
7878
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}"
7979
EndProject
80-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.CraClientSample", "Samples\WAMP1\WampSharp.CraClientSample\WampSharp.CraClientSample.csproj", "{9DC84D95-BC60-4E97-B882-D72612957548}"
80+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.CraClientSample", "Samples\WAMP1\WampSharp.CraClientSample\WampSharp.CraClientSample.csproj", "{9DC84D95-BC60-4E97-B882-D72612957548}"
8181
EndProject
82-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.CraServerSample", "Samples\WAMP1\WampSharp.CraServerSample\WampSharp.CraServerSample.csproj", "{62FB7CD5-00F6-4131-8623-53C2E44B8ABE}"
82+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.CraServerSample", "Samples\WAMP1\WampSharp.CraServerSample\WampSharp.CraServerSample.csproj", "{62FB7CD5-00F6-4131-8623-53C2E44B8ABE}"
8383
EndProject
84-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.PubSubServerSample", "Samples\WAMP1\WampSharp.PubSubServerSample\WampSharp.PubSubServerSample.csproj", "{1CC3952F-22AB-4EDF-9A3D-6B2A47F96AFB}"
84+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.PubSubServerSample", "Samples\WAMP1\WampSharp.PubSubServerSample\WampSharp.PubSubServerSample.csproj", "{1CC3952F-22AB-4EDF-9A3D-6B2A47F96AFB}"
8585
EndProject
86-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.RpcClientSample", "Samples\WAMP1\WampSharp.RpcClientSample\WampSharp.RpcClientSample.csproj", "{380AED0D-BF1F-4E0E-91D6-AEF79D6EEA16}"
86+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.RpcClientSample", "Samples\WAMP1\WampSharp.RpcClientSample\WampSharp.RpcClientSample.csproj", "{380AED0D-BF1F-4E0E-91D6-AEF79D6EEA16}"
8787
EndProject
88-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.RpcServerSample", "Samples\WAMP1\WampSharp.RpcServerSample\WampSharp.RpcServerSample.csproj", "{2C38F531-C060-4AEB-AB65-3F2BF412D19F}"
88+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WampSharp.RpcServerSample", "Samples\WAMP1\WampSharp.RpcServerSample\WampSharp.RpcServerSample.csproj", "{2C38F531-C060-4AEB-AB65-3F2BF412D19F}"
89+
EndProject
90+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WampSharp.Default", "WampSharp.Default\WampSharp.Default.csproj", "{5006AB4D-2677-4CEF-BFE4-63D258650C8F}"
8991
EndProject
9092
Global
9193
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -585,6 +587,22 @@ Global
585587
{2C38F531-C060-4AEB-AB65-3F2BF412D19F}.Release|x64.Build.0 = Release|Any CPU
586588
{2C38F531-C060-4AEB-AB65-3F2BF412D19F}.Release|x86.ActiveCfg = Release|Any CPU
587589
{2C38F531-C060-4AEB-AB65-3F2BF412D19F}.Release|x86.Build.0 = Release|Any CPU
590+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
591+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|Any CPU.Build.0 = Debug|Any CPU
592+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|ARM.ActiveCfg = Debug|Any CPU
593+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|ARM.Build.0 = Debug|Any CPU
594+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|x64.ActiveCfg = Debug|Any CPU
595+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|x64.Build.0 = Debug|Any CPU
596+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|x86.ActiveCfg = Debug|Any CPU
597+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Debug|x86.Build.0 = Debug|Any CPU
598+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|Any CPU.ActiveCfg = Release|Any CPU
599+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|Any CPU.Build.0 = Release|Any CPU
600+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|ARM.ActiveCfg = Release|Any CPU
601+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|ARM.Build.0 = Release|Any CPU
602+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|x64.ActiveCfg = Release|Any CPU
603+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|x64.Build.0 = Release|Any CPU
604+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|x86.ActiveCfg = Release|Any CPU
605+
{5006AB4D-2677-4CEF-BFE4-63D258650C8F}.Release|x86.Build.0 = Release|Any CPU
588606
EndGlobalSection
589607
GlobalSection(SolutionProperties) = preSolution
590608
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)