Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit eb429dc

Browse files
committed
Update to release pacakges and trim nuget.config
1 parent c5f3cdd commit eb429dc

9 files changed

Lines changed: 49 additions & 21 deletions

File tree

NuGet.config

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,8 @@
66
<packageSources>
77
<clear />
88
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
9-
<add key="dotnet5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json" />
109
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
1110
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
12-
<add key="nuget-build" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/nuget-build/nuget/v3/index.json" />
13-
<add key="dotnet3" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet3/nuget/v3/index.json" />
14-
<add key="dotnet3-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet3-transport/nuget/v3/index.json" />
1511
</packageSources>
1612
<disabledPackageSources>
1713
<clear />

build.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env bash
2+
3+
source="${BASH_SOURCE[0]}"
4+
5+
# resolve $SOURCE until the file is no longer a symlink
6+
while [[ -h $source ]]; do
7+
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
8+
source="$(readlink "$source")"
9+
10+
# if $source was a relative symlink, we need to resolve it relative to the path where the
11+
# symlink file was located
12+
[[ $source != /* ]] && source="$scriptroot/$source"
13+
done
14+
15+
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16+
"$scriptroot/eng/common/build.sh" --build --restore $@

eng/Versions.props

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@
1111
-->
1212
<PropertyGroup>
1313
<MicrosoftBuildLocatorVersion>1.4.1</MicrosoftBuildLocatorVersion>
14-
<MicrosoftBuildVersion>16.7</MicrosoftBuildVersion>
15-
<MicrosoftWin32RegistryVersion>5.0.0-rc.1.20451.14</MicrosoftWin32RegistryVersion>
16-
<NewtonsoftJsonVersion>12.0.3</NewtonsoftJsonVersion>
17-
<NuGetVersioningVersion>5.8.0-preview.3.6823</NuGetVersioningVersion>
18-
<SystemCollectionsImmutableVersion>5.0.0-rc.1.20451.14</SystemCollectionsImmutableVersion>
14+
<MicrosoftBuildVersion>16.10</MicrosoftBuildVersion>
15+
<MicrosoftWin32RegistryVersion>5.0.0</MicrosoftWin32RegistryVersion>
16+
<NewtonsoftJsonVersion>13.0.1</NewtonsoftJsonVersion>
17+
<NuGetVersioningVersion>6.0.0</NuGetVersioningVersion>
18+
<SystemCollectionsImmutableVersion>6.0.0</SystemCollectionsImmutableVersion>
1919
<SystemCommandLineVersion>2.0.0-beta1.20371.2</SystemCommandLineVersion>
20-
<SystemConfigurationConfigurationManagerVersion>5.0.0-rc.1.20451.14</SystemConfigurationConfigurationManagerVersion>
21-
<SystemSecurityPrincipalWindowsVersion>5.0.0-rc.1.20451.14</SystemSecurityPrincipalWindowsVersion>
20+
<SystemConfigurationConfigurationManagerVersion>6.0.0</SystemConfigurationConfigurationManagerVersion>
21+
<SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>
2222
</PropertyGroup>
2323
<!--
2424
Nuget package versions for tests
2525
-->
2626
<PropertyGroup>
27-
<CoverletCollectorVersion>1.3.0 </CoverletCollectorVersion>
28-
<MoqVersion>4.14.6 </MoqVersion>
27+
<CoverletCollectorVersion>3.1.2</CoverletCollectorVersion>
28+
<MoqVersion>4.18.1</MoqVersion>
2929
</PropertyGroup>
3030
<PropertyGroup>
3131
<DiscoverEditorConfigFiles>true</DiscoverEditorConfigFiles>

global.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"runtimes": {
55
"dotnet": [
66
"6.0.5",
7-
"5.0.14",
8-
"3.1.7",
9-
"2.1.11"
7+
"5.0.17",
8+
"3.1.25",
9+
"2.1.30"
1010
]
1111
}
1212
},
@@ -18,4 +18,4 @@
1818
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22275.2",
1919
"Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.22275.2"
2020
}
21-
}
21+
}

test.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env bash
2+
3+
source="${BASH_SOURCE[0]}"
4+
5+
# resolve $SOURCE until the file is no longer a symlink
6+
while [[ -h $source ]]; do
7+
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
8+
source="$(readlink "$source")"
9+
10+
# if $source was a relative symlink, we need to resolve it relative to the path where the
11+
# symlink file was located
12+
[[ $source != /* ]] && source="$scriptroot/$source"
13+
done
14+
15+
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16+
"$scriptroot/eng/common/build.sh" --test $@

tests/TestData/SmokeTests.LegacyFSharpConsole/SmokeTests.LegacyFSharpConsole.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<PropertyGroup Condition=" '$(FSharpTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets') ">
4545
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets</FSharpTargetsPath>
4646
</PropertyGroup>
47-
<Import Project="$(FSharpTargetsPath)" />
47+
4848
<ItemGroup>
4949
<Compile Include="AssemblyInfo.fs" />
5050
<Compile Include="Program.fs" />

tests/TestData/SmokeTests.LegacyMSTest/SmokeTests.LegacyMSTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props')" />
44
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />

tests/TestData/SmokeTests.WinformsFramework/SmokeTests.WinformsFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>

tests/TestData/SmokeTests.WpfFramework/SmokeTests.WpfFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>

0 commit comments

Comments
 (0)