-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrleansContrib.ActivationShedding.csproj
50 lines (46 loc) · 2.77 KB
/
OrleansContrib.ActivationShedding.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>OrleansContrib.ActivationShedding</RootNamespace>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>orleans microsoftorleans</PackageTags>
<PackageId>Nivot.OrleansContrib.ActivationShedding</PackageId>
<PackageVersion>0.5.1-beta</PackageVersion>
<Title>Microsoft Orleans Grain Shedding Extension</Title>
<Authors>Oisin Grehan</Authors>
<Description>Allows rebalancing of grain activations across a cluster. Useful during rolling upgrades where placement can be very unbalanced at the end of the deployment.</Description>
<TargetFrameworks>net5.0;netcoreapp3.1</TargetFrameworks>
<PackageProjectUrl>https://github.com/oising/OrleansContrib.ActivationShedding</PackageProjectUrl>
<RepositoryUrl>https://github.com/oising/OrleansContrib.ActivationShedding</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- <AssemblyVersion>1.0.0</AssemblyVersion>-->
<!-- <FileVersion>1.0.0</FileVersion>-->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSource>true</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
<None Include=".github\workflows\build.yml" />
</ItemGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.0" />
<PackageReference Include="Microsoft.Orleans.CodeGenerator.MSBuild" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Orleans.Core" Version="3.1.0" />
<PackageReference Include="Microsoft.Orleans.Core.Abstractions" Version="3.1.0" />
<PackageReference Include="Microsoft.Orleans.OrleansRuntime" Version="3.1.0" />
<PackageReference Include="Microsoft.Orleans.Runtime.Abstractions" Version="3.1.0" />
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="3.1.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>