-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Orleans 3.0.0 support * Avoid extra build while publishing
- Loading branch information
1 parent
8af7ea5
commit eb301b4
Showing
5 changed files
with
43 additions
and
38 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
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,42 +1,46 @@ | ||
<Project> | ||
<!-- Set the repository root into a variable --> | ||
<PropertyGroup> | ||
<SourceRoot>$(MSBuildThisFileDirectory)</SourceRoot> | ||
</PropertyGroup> | ||
<!-- Set the repository root into a variable --> | ||
<PropertyGroup> | ||
<SourceRoot>$(MSBuildThisFileDirectory)</SourceRoot> | ||
</PropertyGroup> | ||
|
||
<!-- Set common properties regarding assembly information and nuget packages --> | ||
<PropertyGroup> | ||
<Authors>Gutemberg Ribeiro, Clayton Lautier</Authors> | ||
<Owners>Gutemberg Ribeiro, Clayton Lautier</Owners> | ||
<Product>Orleans SignalR Backplane</Product> | ||
<RepositoryUrl>https://github.com/OrleansContrib/SignalR.Orleans</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseUrl>https://github.com/dotnet/Orleans#license</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/OrleansContrib/SignalR.Orleans</PackageProjectUrl> | ||
<PackageIconUrl>https://raw.githubusercontent.com/dotnet/orleans/gh-pages/assets/logo_128.png</PackageIconUrl> | ||
<PackageTags>Orleans Cloud-Computing Actor-Model Actors Distributed-Systems Real-Time SignalR C# .NET</PackageTags> | ||
</PropertyGroup> | ||
<!-- Set common properties regarding assembly information and nuget packages --> | ||
<PropertyGroup> | ||
<Authors>Gutemberg Ribeiro, Clayton Lautier</Authors> | ||
<Owners>Gutemberg Ribeiro, Clayton Lautier</Owners> | ||
<Product>Orleans SignalR Backplane</Product> | ||
<RepositoryUrl>https://github.com/OrleansContrib/SignalR.Orleans</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/OrleansContrib/SignalR.Orleans</PackageProjectUrl> | ||
<PackageIcon>logo_128.png</PackageIcon> | ||
<PackageTags>Orleans Cloud-Computing Actor-Model Actors Distributed-Systems Real-Time SignalR C# .NET</PackageTags> | ||
</PropertyGroup> | ||
|
||
<!-- Common compile parameters --> | ||
<PropertyGroup> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<NoWarn>$(NoWarn);1701;1702;1705;1591</NoWarn> | ||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
<!-- Common compile parameters --> | ||
<PropertyGroup> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<NoWarn>$(NoWarn);1701;1702;1705;1591</NoWarn> | ||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<!-- Shared Package Versions --> | ||
<PropertyGroup> | ||
<!-- vendors --> | ||
<OrleansCoreVersion>3.0.0</OrleansCoreVersion> | ||
<OrleansProvidersVersion>3.0.0</OrleansProvidersVersion> | ||
<OrleansCodeGeneratorVersion>3.0.0</OrleansCodeGeneratorVersion> | ||
<OrleansRuntimeAbstractionsVersion>3.0.0</OrleansRuntimeAbstractionsVersion> | ||
<OrleansRuntimeVersion>3.0.0</OrleansRuntimeVersion> | ||
<SignalRVersion>1.1.0</SignalRVersion> | ||
</PropertyGroup> | ||
<!-- Shared Package Versions --> | ||
<PropertyGroup> | ||
<!-- vendors --> | ||
<OrleansCoreVersion>3.0.0</OrleansCoreVersion> | ||
<OrleansProvidersVersion>3.0.0</OrleansProvidersVersion> | ||
<OrleansCodeGeneratorVersion>3.0.0</OrleansCodeGeneratorVersion> | ||
<OrleansRuntimeAbstractionsVersion>3.0.0</OrleansRuntimeAbstractionsVersion> | ||
<OrleansRuntimeVersion>3.0.0</OrleansRuntimeVersion> | ||
<SignalRVersion>1.1.0</SignalRVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="$(SourceRoot)assets/logo_128.png" Pack="true" Visible="false" PackagePath="/" /> | ||
</ItemGroup> | ||
</Project> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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