Skip to content

Commit 911b2d0

Browse files
committed
improves project info and versioning
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent 37553f8 commit 911b2d0

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

RSocket.Core.Tests/RSocket.Core.Tests.csproj

+18-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,22 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.1</TargetFramework>
5-
65
<IsPackable>false</IsPackable>
7-
86
<LangVersion>latest</LangVersion>
7+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
8+
<Title>RSocket-Net Core Tests</Title>
9+
<Authors>RSocket Team</Authors>
10+
<Description>RSocket Protocol for .NET</Description>
11+
<Copyright>RSocket Authors</Copyright>
12+
<PackageProjectUrl>http://rsocket.io/</PackageProjectUrl>
13+
<PackageIconUrl>https://github.com/rsocket/rsocket-artwork/raw/master/rsocket-logo/PNG/r-socket-pink.png</PackageIconUrl>
14+
<RepositoryUrl>https://github.com/rsocket/rsocket-net</RepositoryUrl>
15+
<PackageTags>RSocket, Protocol, Network, Reactive, Reactive Streams</PackageTags>
16+
<Version>0.2.7</Version>
17+
<PackageVersion>0.2.7</PackageVersion>
18+
<AssemblyVersion>0.2.7</AssemblyVersion>
19+
<FileVersion>0.2.7</FileVersion>
20+
<ProductVersion>0.2.7</ProductVersion>
921
</PropertyGroup>
1022

1123
<ItemGroup>
@@ -20,4 +32,8 @@
2032
<ProjectReference Include="..\RSocket.Core\RSocket.Core.csproj" />
2133
</ItemGroup>
2234

35+
<ItemGroup>
36+
<None Include="..\LICENSE" Pack="true" PackagePath="LICENSE"/>
37+
</ItemGroup>
38+
2339
</Project>

RSocket.Core/RSocket.Core.csproj

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>RSocket</RootNamespace>
66
<LangVersion>latest</LangVersion>
7+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
8+
<Title>RSocket-Net Core Library</Title>
9+
<Authors>RSocket Team</Authors>
10+
<Description>RSocket Protocol for .NET</Description>
11+
<Copyright>RSocket Authors</Copyright>
12+
<PackageProjectUrl>http://rsocket.io/</PackageProjectUrl>
13+
<PackageIconUrl>https://github.com/rsocket/rsocket-artwork/raw/master/rsocket-logo/PNG/r-socket-pink.png</PackageIconUrl>
14+
<RepositoryUrl>https://github.com/rsocket/rsocket-net</RepositoryUrl>
15+
<PackageTags>RSocket, Protocol, Network, Reactive, Reactive Streams</PackageTags>
16+
<Version>0.2.7</Version>
17+
<PackageVersion>0.2.7</PackageVersion>
18+
<AssemblyVersion>0.2.7</AssemblyVersion>
19+
<FileVersion>0.2.7</FileVersion>
20+
<ProductVersion>0.2.7</ProductVersion>
721
</PropertyGroup>
822

923
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -30,4 +44,8 @@
3044
<PackageReference Include="System.Reactive" Version="4.1.3" />
3145
</ItemGroup>
3246

47+
<ItemGroup>
48+
<None Include="..\LICENSE" Pack="true" PackagePath="LICENSE" />
49+
</ItemGroup>
50+
3351
</Project>

RSocketSample/RSocketSample.csproj

+17
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.1</TargetFramework>
66
<LangVersion>latest</LangVersion>
7+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
8+
<Title>RSocket-Net Samples</Title>
9+
<Authors>RSocket Team</Authors>
10+
<Description>RSocket Protocol for .NET</Description>
11+
<Copyright>RSocket Authors</Copyright>
12+
<PackageProjectUrl>http://rsocket.io/</PackageProjectUrl>
13+
<PackageIconUrl>https://github.com/rsocket/rsocket-artwork/raw/master/rsocket-logo/PNG/r-socket-pink.png</PackageIconUrl>
14+
<RepositoryUrl>https://github.com/rsocket/rsocket-net</RepositoryUrl>
15+
<PackageTags>RSocket, Protocol, Network, Reactive, Reactive Streams</PackageTags>
16+
<Version>0.2.7</Version>
17+
<PackageVersion>0.2.7</PackageVersion>
18+
<AssemblyVersion>0.2.7</AssemblyVersion>
19+
<FileVersion>0.2.7</FileVersion>
20+
<ProductVersion>0.2.7</ProductVersion>
721
</PropertyGroup>
822

923
<ItemGroup>
@@ -15,4 +29,7 @@
1529
<ProjectReference Include="..\RSocket.Core\RSocket.Core.csproj" />
1630
</ItemGroup>
1731

32+
<ItemGroup>
33+
<None Include="..\LICENSE" Pack="true" PackagePath="LICENSE"/>
34+
</ItemGroup>
1835
</Project>

0 commit comments

Comments
 (0)