Skip to content

Commit

Permalink
Version to 1.1.4; update Orleans NuGets to 7.1.2; add NuGet.config fo…
Browse files Browse the repository at this point in the history
…r local testing
  • Loading branch information
VincentH-Net committed Jun 6, 2023
1 parent 910bdb9 commit 1254cf8
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 17 deletions.
12 changes: 6 additions & 6 deletions src/Example/Apis/Apis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Orleans.Persistence.AzureStorage" Version="7.0.0" />
<PackageReference Include="Microsoft.Orleans.Persistence.Memory" Version="7.0.0" />
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" />
<PackageReference Include="Orleans.Multitenant" Version="1.0.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="Microsoft.Orleans.Persistence.AzureStorage" Version="7.1.2" />
<PackageReference Include="Microsoft.Orleans.Persistence.Memory" Version="7.1.2" />
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.1.2" />
<PackageReference Include="Orleans.Multitenant" Version="1.1.4" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.5" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Example/Contracts/Contracts.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" />
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.1.2" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Example/Services.Tenant/Services.Tenant.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" />
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.1.2" />
<PackageReference Include="Orleans.Multitenant" Version="1.0.0" />
</ItemGroup>

Expand Down
9 changes: 9 additions & 0 deletions src/NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />

<!-- Uncomment the line below to use a local-built version of Orleans.Multitenant NuGet -->
<!--<add key="multitenant-local" value="Orleans.Multitenant\bin\Release" />-->
</packageSources>
</configuration>
8 changes: 4 additions & 4 deletions src/Orleans.Multitenant/Orleans.Multitenant.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Orleans.Multitenant</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<PackageVersion>1.1.4</PackageVersion>
<Title>Orleans Multitenant</Title>
<Description>Secure, flexible tenant separation for Microsoft Orleans 7</Description>
<Authors>VincentH.NET;Applicita</Authors>
Expand Down Expand Up @@ -41,9 +41,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Orleans.Runtime" Version="7.0.0" />
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" />
<PackageReference Include="Microsoft.Orleans.Streaming" Version="7.0.0" />
<PackageReference Include="Microsoft.Orleans.Runtime" Version="7.1.2" />
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.1.2" />
<PackageReference Include="Microsoft.Orleans.Streaming" Version="7.1.2" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Orleans.Multitenant/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

Docs: see the [repo readme](https://github.com/Applicita/Orleans.Multitenant#readme) and the inline C# documentation. All public Orleans.Multitenant API's come with full inline documentation.

[Release Notes](https://github.com/Applicita/Orleans.Multitenant/releases/tag/1-0-0)
[Release Notes](https://github.com/Applicita/Orleans.Multitenant/releases/tag/1-1-4)
8 changes: 4 additions & 4 deletions src/Tests/Orleans.Multitenant.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0-preview-20221003-04" />
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" />
<PackageReference Include="Microsoft.Orleans.TestingHost" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.1.2" />
<PackageReference Include="Microsoft.Orleans.TestingHost" Version="7.1.2" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="coverlet.collector" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit 1254cf8

Please sign in to comment.