Skip to content

Commit 15e09e2

Browse files
Merging main into darc-main-6a483e62-9a15-475d-a31b-7c7d1c96cb9f
2 parents 33e4f4b + ddc320a commit 15e09e2

File tree

18 files changed

+60
-278
lines changed

18 files changed

+60
-278
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"microsoft.dotnet.darc": {
6-
"version": "1.1.0-beta.25271.3",
6+
"version": "1.1.0-beta.25272.3",
77
"commands": [
88
"darc"
99
]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Visibility|All jobs|
2020
You can download the .NET SDK as either an installer (MSI, PKG) or a zip (zip, tar.gz). The .NET SDK contains both the .NET runtime and CLI tools.
2121

2222
- [Official builds](https://dotnet.microsoft.com/download/dotnet)
23-
- [**.NET SDK latest builds table**](documentation/package-table.md)
23+
- [**.NET SDK latest builds table**](https://github.com/dotnet/dotnet/blob/main/docs/builds-table.md)
2424

2525
> [!NOTE]
2626
> When acquiring installers from the .NET SDK latest builds table, be aware that the installers are the **latest bits**. With development builds, internal NuGet feeds are necessary for some scenarios (for example, to acquire the runtime pack for self-contained apps). You can use the following NuGet.config to configure these feeds. See the following document [Configuring NuGet behavior](https://docs.microsoft.com/nuget/consume-packages/configuring-nuget-behavior) for more information on where to modify your NuGet.config to apply the changes.

documentation/package-table.md

Lines changed: 0 additions & 228 deletions
This file was deleted.

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -538,13 +538,13 @@
538538
<Uri>https://github.com/dotnet/dotnet</Uri>
539539
<Sha>9d86ce59f05e31b1bccb0cd5604f803416796fe4</Sha>
540540
</Dependency>
541-
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.25271.3">
541+
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.25272.3">
542542
<Uri>https://github.com/dotnet/arcade-services</Uri>
543-
<Sha>5d2b9c17bf40f12fb843f329cd60d68105e73389</Sha>
543+
<Sha>b6c1947b3493a1ad3a1a87fa689128e1d73309ba</Sha>
544544
</Dependency>
545-
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.25271.3">
545+
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.25272.3">
546546
<Uri>https://github.com/dotnet/arcade-services</Uri>
547-
<Sha>5d2b9c17bf40f12fb843f329cd60d68105e73389</Sha>
547+
<Sha>b6c1947b3493a1ad3a1a87fa689128e1d73309ba</Sha>
548548
</Dependency>
549549
<Dependency Name="Microsoft.Testing.Platform" Version="1.8.0-preview.25270.10">
550550
<Uri>https://github.com/microsoft/testfx</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
</PropertyGroup>
9090
<PropertyGroup>
9191
<!-- Dependency from https://github.com/dotnet/arcade-services -->
92-
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.25271.3</MicrosoftDotNetDarcLibVersion>
92+
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.25272.3</MicrosoftDotNetDarcLibVersion>
9393
</PropertyGroup>
9494
<PropertyGroup>
9595
<!-- Dependency from https://github.com/dotnet/aspire -->

eng/cgmanifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"type": "nuget",
2626
"nuget": {
2727
"name": "MSTest",
28-
"version": "3.8.3"
28+
"version": "3.9.0"
2929
}
3030
}
3131
},
@@ -52,7 +52,7 @@
5252
"type": "nuget",
5353
"nuget": {
5454
"name": "NUnit.Analyzers",
55-
"version": "4.6.0"
55+
"version": "4.7.0"
5656
}
5757
}
5858
},
@@ -70,7 +70,7 @@
7070
"type": "nuget",
7171
"nuget": {
7272
"name": "Microsoft.Playwright.NUnit",
73-
"version": "1.51.0"
73+
"version": "1.52.0"
7474
}
7575
}
7676
},

template_feed/Microsoft.DotNet.Common.ProjectTemplates.10.0/content/MSTest-CSharp/Company.TestProject1.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--#if (UseMSTestSdk)-->
2-
<Project Sdk="MSTest.Sdk/3.8.3">
2+
<Project Sdk="MSTest.Sdk/3.9.0">
33

44
<PropertyGroup>
55
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net10.0</TargetFramework>
@@ -54,7 +54,7 @@
5454
<!--#if (CoverageTool == "coverlet")-->
5555
<PackageReference Include="coverlet.collector" Version="6.0.4" />
5656
<!--#endif-->
57-
<PackageReference Include="MSTest" Version="3.8.3" />
57+
<PackageReference Include="MSTest" Version="3.9.0" />
5858
</ItemGroup>
5959

6060
<ItemGroup>

template_feed/Microsoft.DotNet.Common.ProjectTemplates.10.0/content/MSTest-FSharp/Company.TestProject1.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--#if (UseMSTestSdk)-->
2-
<Project Sdk="MSTest.Sdk/3.8.3">
2+
<Project Sdk="MSTest.Sdk/3.9.0">
33

44
<PropertyGroup>
55
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net10.0</TargetFramework>
@@ -59,7 +59,7 @@
5959
<!--#if (CoverageTool == "coverlet")-->
6060
<PackageReference Include="coverlet.collector" Version="6.0.4" />
6161
<!--#endif-->
62-
<PackageReference Include="MSTest" Version="3.8.3" />
62+
<PackageReference Include="MSTest" Version="3.9.0" />
6363
</ItemGroup>
6464

6565
<ItemGroup>

template_feed/Microsoft.DotNet.Common.ProjectTemplates.10.0/content/MSTest-VisualBasic/Company.TestProject1.vbproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--#if (UseMSTestSdk)-->
2-
<Project Sdk="MSTest.Sdk/3.8.3">
2+
<Project Sdk="MSTest.Sdk/3.9.0">
33

44
<PropertyGroup>
55
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net10.0</TargetFramework>
@@ -54,7 +54,7 @@
5454
<!--#if (CoverageTool == "coverlet")-->
5555
<PackageReference Include="coverlet.collector" Version="6.0.4" />
5656
<!--#endif-->
57-
<PackageReference Include="MSTest" Version="3.8.3" />
57+
<PackageReference Include="MSTest" Version="3.9.0" />
5858
</ItemGroup>
5959

6060
<ItemGroup>

template_feed/Microsoft.DotNet.Common.ProjectTemplates.10.0/content/NUnit-CSharp/Company.TestProject1.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
<ItemGroup>
1515
<PackageReference Include="coverlet.collector" Version="6.0.4" />
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
1717
<PackageReference Include="NUnit" Version="4.3.2" />
18-
<PackageReference Include="NUnit.Analyzers" Version="4.6.0" />
18+
<PackageReference Include="NUnit.Analyzers" Version="4.7.0" />
1919
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
2020
</ItemGroup>
2121

0 commit comments

Comments
 (0)