|
2 | 2 | <Project Sdk="Microsoft.NET.Sdk"> |
3 | 3 |
|
4 | 4 | <PropertyGroup> |
| 5 | + <Deterministic>true</Deterministic> |
| 6 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
5 | 7 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
6 | 8 | <IncludeSymbols>true</IncludeSymbols> |
7 | 9 | <PackageDescription>A unit test toolkit for Microsoft Orleans that does not require a real silo. Instead, tests are run with a mock grain activation context.</PackageDescription> |
8 | 10 | <PackageIcon>logo_128.png</PackageIcon> |
9 | 11 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
10 | 12 | <PackageOutputPath Condition=" '$(PackageOutputPath)'=='' ">$(ProjectRoot)/artifacts/$(Configuration)</PackageOutputPath> |
11 | 13 | <PackageProjectUrl>https://github.com/OrleansContrib/OrleansTestKit</PackageProjectUrl> |
| 14 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
12 | 15 | <PackageTags>Orleans Cloud-Computing Actor-Model Actors Distributed-Systems C# .NET Test Testing</PackageTags> |
13 | 16 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
14 | 17 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
15 | | - <Version>8.2.0</Version> |
| 18 | + <Version>8.2.1</Version> |
16 | 19 | </PropertyGroup> |
17 | 20 |
|
18 | 21 | <PropertyGroup> |
|
27 | 30 | <PackageReference Include="Microsoft.Orleans.Reminders" Version="8.2.0" /> |
28 | 31 | <PackageReference Include="Microsoft.Orleans.Streaming" Version="8.2.0" /> |
29 | 32 | <PackageReference Include="Microsoft.Orleans.Runtime" Version="8.2.0" /> |
30 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> |
31 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 33 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> |
32 | 34 | <PrivateAssets>all</PrivateAssets> |
| 35 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
33 | 36 | </PackageReference> |
34 | 37 | <PackageReference Include="Moq" Version="4.20.70" /> |
35 | 38 | <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556"> |
|
40 | 43 |
|
41 | 44 | <ItemGroup> |
42 | 45 | <None Include="$(ProjectRoot)assets/logo_128.png" Pack="true" Visible="false" PackagePath="/" /> |
| 46 | + <None Include="$(ProjectRoot)README.md" Pack="true" PackagePath="/" /> |
43 | 47 | </ItemGroup> |
44 | 48 |
|
45 | 49 | </Project> |
0 commit comments