|
1 |
| -<Project> |
2 |
| - <PropertyGroup> |
3 |
| - <HtmlAgilityPackPackageVersion>1.5.1</HtmlAgilityPackPackageVersion> |
4 |
| - <MicroBuildCorePackageVersion>0.3.0</MicroBuildCorePackageVersion> |
5 |
| - <MicrosoftDotNetPlatformAbstractionsVersion>2.0.0</MicrosoftDotNetPlatformAbstractionsVersion> |
6 |
| - <MicrosoftDotNetSignToolPackageVersion>1.0.0-beta.19119.1</MicrosoftDotNetSignToolPackageVersion> |
7 |
| - <MicrosoftDotNetSignCheckPackageVersion>1.0.0-beta.20569.8</MicrosoftDotNetSignCheckPackageVersion> |
8 |
| - <MicrosoftNETFrameworkReferenceAssembliesPackageVersion>1.0.0-preview.1</MicrosoftNETFrameworkReferenceAssembliesPackageVersion> |
9 |
| - <MicrosoftNETTestSdkPackageVersion>15.9.0</MicrosoftNETTestSdkPackageVersion> |
10 |
| - <MonoCecilPackageVersion>0.10.0-beta6</MonoCecilPackageVersion> |
11 |
| - <MoqPackageVersion>4.7.99</MoqPackageVersion> |
12 |
| - <!-- This one is OK for console tools that bundle their own version of JSON.NET --> |
13 |
| - <NewtonsoftJsonPackageVersion>10.0.1</NewtonsoftJsonPackageVersion> |
14 |
| - <NuGetPackagingPackageVersion>4.3.0</NuGetPackagingPackageVersion> |
15 |
| - <NuGetProjectModelPackageVersion>4.3.0</NuGetProjectModelPackageVersion> |
16 |
| - <VSWherePackageVersion>2.2.7</VSWherePackageVersion> |
17 |
| - <XunitPackageVersion>2.3.1</XunitPackageVersion> |
18 |
| - <XunitRunnerVisualStudioPackageVersion>2.3.1</XunitRunnerVisualStudioPackageVersion> |
19 |
| - </PropertyGroup> |
20 |
| - |
21 |
| - <!-- |
22 |
| - Attempt to keep these mostly aligned with https://github.com/dotnet/cli/blob/master/build/DependencyVersions.props |
23 |
| - and with the version of MSBuild used by KoreBuild. |
24 |
| - MSBuild will prefer the assemblies that ship in the .NET Core SDK and MSbuild. The dependency versions here don't matter |
25 |
| - as long as the version we compile for is binary compatible with what the .NET Core SDK uses. |
26 |
| - --> |
27 |
| - <PropertyGroup> |
28 |
| - <MicrosoftBuildPackageVersion>15.8.166</MicrosoftBuildPackageVersion> |
29 |
| - <MicrosoftBuildFrameworkPackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion> |
30 |
| - <MicrosoftBuildUtilitiesCorePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildUtilitiesCorePackageVersion> |
31 |
| - <MicrosoftBuildTasksCorePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildTasksCorePackageVersion> |
32 |
| - <Tooling_NewtonsoftJsonPackageVersion>9.0.1</Tooling_NewtonsoftJsonPackageVersion> |
33 |
| - <Tooling_NuGetBuildTasksPackageVersion>4.7.0-netcore.2.1.preview2.5133</Tooling_NuGetBuildTasksPackageVersion> |
34 |
| - </PropertyGroup> |
35 |
| - |
36 |
| - <!-- These are set to flow into RepoTasks.csproj --> |
37 |
| - <PropertyGroup> |
38 |
| - <MicrosoftBuildVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildVersion> |
39 |
| - <JsonInMSBuildVersion>$(Tooling_NewtonsoftJsonPackageVersion)</JsonInMSBuildVersion> |
40 |
| - <NuGetInMSBuildVersion>$(Tooling_NuGetBuildTasksPackageVersion)</NuGetInMSBuildVersion> |
41 |
| - </PropertyGroup> |
42 |
| - |
43 |
| - <Import Project="$(DotNetPackageVersionPropsPath)" Condition=" '$(DotNetPackageVersionPropsPath)' != '' " /> |
44 |
| -</Project> |
| 1 | +<Project> |
| 2 | + <PropertyGroup> |
| 3 | + <HtmlAgilityPackPackageVersion>1.5.1</HtmlAgilityPackPackageVersion> |
| 4 | + <MicroBuildCorePackageVersion>0.3.0</MicroBuildCorePackageVersion> |
| 5 | + <MicrosoftDotNetPlatformAbstractionsVersion>2.0.0</MicrosoftDotNetPlatformAbstractionsVersion> |
| 6 | + <MicrosoftDotNetSignToolPackageVersion>1.0.0-beta.19119.1</MicrosoftDotNetSignToolPackageVersion> |
| 7 | + <MicrosoftDotNetSignCheckPackageVersion>1.0.0-beta.20569.8</MicrosoftDotNetSignCheckPackageVersion> |
| 8 | + <MicrosoftNETFrameworkReferenceAssembliesPackageVersion>1.0.0-preview.1</MicrosoftNETFrameworkReferenceAssembliesPackageVersion> |
| 9 | + <MicrosoftNETTestSdkPackageVersion>15.9.0</MicrosoftNETTestSdkPackageVersion> |
| 10 | + <MonoCecilPackageVersion>0.10.0-beta6</MonoCecilPackageVersion> |
| 11 | + <MoqPackageVersion>4.7.99</MoqPackageVersion> |
| 12 | + <!-- This one is OK for console tools that bundle their own version of JSON.NET --> |
| 13 | + <NewtonsoftJsonPackageVersion>10.0.1</NewtonsoftJsonPackageVersion> |
| 14 | + <NuGetPackagingPackageVersion>4.3.0</NuGetPackagingPackageVersion> |
| 15 | + <NuGetProjectModelPackageVersion>4.3.0</NuGetProjectModelPackageVersion> |
| 16 | + <VSWherePackageVersion>2.2.7</VSWherePackageVersion> |
| 17 | + <XunitPackageVersion>2.3.1</XunitPackageVersion> |
| 18 | + <XunitRunnerVisualStudioPackageVersion>2.3.1</XunitRunnerVisualStudioPackageVersion> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + <!-- |
| 22 | + Attempt to keep these mostly aligned with https://github.com/dotnet/cli/blob/master/build/DependencyVersions.props |
| 23 | + and with the version of MSBuild used by KoreBuild. |
| 24 | + MSBuild will prefer the assemblies that ship in the .NET Core SDK and MSbuild. The dependency versions here don't matter |
| 25 | + as long as the version we compile for is binary compatible with what the .NET Core SDK uses. |
| 26 | + --> |
| 27 | + <PropertyGroup> |
| 28 | + <MicrosoftBuildPackageVersion>15.8.166</MicrosoftBuildPackageVersion> |
| 29 | + <MicrosoftBuildFrameworkPackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion> |
| 30 | + <MicrosoftBuildUtilitiesCorePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildUtilitiesCorePackageVersion> |
| 31 | + <MicrosoftBuildTasksCorePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildTasksCorePackageVersion> |
| 32 | + <Tooling_NewtonsoftJsonPackageVersion>9.0.1</Tooling_NewtonsoftJsonPackageVersion> |
| 33 | + <Tooling_NuGetBuildTasksPackageVersion>4.7.0-netcore.2.1.preview2.5133</Tooling_NuGetBuildTasksPackageVersion> |
| 34 | + <NugetPackaging>5.11.6</NugetPackaging> |
| 35 | + <NugetProtocol>4.9.6</NugetProtocol> |
| 36 | + <NugetCommands>4.9.6</NugetCommands> |
| 37 | + </PropertyGroup> |
| 38 | + |
| 39 | + <!-- These are set to flow into RepoTasks.csproj --> |
| 40 | + <PropertyGroup> |
| 41 | + <MicrosoftBuildVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildVersion> |
| 42 | + <JsonInMSBuildVersion>$(Tooling_NewtonsoftJsonPackageVersion)</JsonInMSBuildVersion> |
| 43 | + <NuGetInMSBuildVersion>$(Tooling_NuGetBuildTasksPackageVersion)</NuGetInMSBuildVersion> |
| 44 | + </PropertyGroup> |
| 45 | + |
| 46 | + <Import Project="$(DotNetPackageVersionPropsPath)" Condition=" '$(DotNetPackageVersionPropsPath)' != '' " /> |
| 47 | +</Project> |
0 commit comments