Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
c00299b
Update implicit versions for the November release
marcpopMSFT Nov 11, 2025
a5297c0
Update to the RTM build of runtime. Manually update to the matching 2…
marcpopMSFT Nov 11, 2025
8f4bfcf
forgot to include the global.json update.
marcpopMSFT Nov 11, 2025
14c2f3f
Updated the version of templating and deployment tools
marcpopMSFT Nov 14, 2025
c2c8a6e
Merge branch 'release/10.0.2xx' into marcpopMSFT-updateruntimetoGA
marcpopMSFT Nov 14, 2025
363da61
Merge branch 'release/10.0.2xx' into marcpopMSFT-updateruntimetoGA
marcpopMSFT Nov 19, 2025
8f7d103
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Nov 20, 2025
39099c8
[release/10.0.1xx] Update dependencies from microsoft/testfx (#51815)
DonnaChen888 Nov 20, 2025
6320c40
Merge branch 'release/10.0.2xx' into marcpopMSFT-updateruntimetoGA
marcpopMSFT Nov 20, 2025
d777c3b
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Nov 21, 2025
78e1923
[release/10.0.1xx] Update dependencies from microsoft/testfx (#51844)
DonnaChen888 Nov 21, 2025
3796bba
Merge branch 'release/10.0.2xx' into merge/release/10.0.1xx-to-releas…
DonnaChen888 Nov 21, 2025
70e4be3
[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx' (#5…
DonnaChen888 Nov 21, 2025
3ce8a04
Hot Reload: Do not add empty div when diagnostics are empty (#51836)
tmat Nov 21, 2025
c010098
Remove extra F# compiler package version
marcpopMSFT Nov 21, 2025
ac085bb
Update implicit versions for the November release (#51652)
marcpopMSFT Nov 21, 2025
eb996af
Template Engine CLI commands: separate definitions from implementatio…
tmat Nov 21, 2025
f779efc
Update to the RTM build of runtime. (#51660)
marcpopMSFT Nov 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
<clear />
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
<!-- Begin: Package sources from dotnet-dotnet -->
<add key="darc-pub-dotnet-dotnet-b0f34d5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-dotnet-b0f34d51/nuget/v3/index.json" />
<add key="darc-int-dotnet-dotnet-b0f34d5" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-dotnet-b0f34d51/nuget/v3/index.json" />
<add key="darc-int-dotnet-dotnet-b0f34d5-1" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-dotnet-b0f34d51-1/nuget/v3/index.json" />
<!-- End: Package sources from dotnet-dotnet -->
<!-- Begin: Package sources from microsoft-testfx -->
<!-- End: Package sources from microsoft-testfx -->
Expand Down Expand Up @@ -38,6 +41,10 @@
<disabledPackageSources>
<clear />
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
<!-- Begin: Package sources from dotnet-dotnet -->
<add key="darc-int-dotnet-dotnet-b0f34d5-1" value="true" />
<add key="darc-int-dotnet-dotnet-b0f34d5" value="true" />
<!-- End: Package sources from dotnet-dotnet -->
<!-- Begin: Package sources from dotnet-runtime -->
<!-- End: Package sources from dotnet-runtime -->
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
Expand Down
328 changes: 201 additions & 127 deletions eng/Version.Details.props

Large diffs are not rendered by default.

326 changes: 163 additions & 163 deletions eng/Version.Details.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<VersionFeature60>36</VersionFeature60>
<VersionFeature70>20</VersionFeature70>
<!-- This version should be N-1 (ie the currently released version) in the preview branch but N-2 in main so that workloads stay behind the unreleased version -->
<VersionFeature80>21</VersionFeature80>
<VersionFeature90>10</VersionFeature90>
<VersionFeature80>22</VersionFeature80>
<VersionFeature90>11</VersionFeature90>
<!-- Should be kept in sync with VersionFeature70. It should match the version of Microsoft.NET.ILLink.Tasks
referenced by the same 7.0 SDK that references the 7.0.VersionFeature70 runtime pack. -->
<_NET70ILLinkPackVersion>7.0.100-1.23211.1</_NET70ILLinkPackVersion>
Expand Down
5 changes: 5 additions & 0 deletions src/BuiltInTools/Web.Middleware/WebSocketScriptInjection.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@ setTimeout(async function () {
console.debug('Reporting Hot Reload diagnostics.');

document.querySelectorAll('#dotnet-compile-error').forEach(el => el.remove());

if (diagnostics.length == 0) {
return;
}

const el = document.body.appendChild(document.createElement('div'));
el.id = 'dotnet-compile-error';
el.setAttribute('style', 'z-index:1000000; position:fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0,0,0,0.5); color:black; overflow: scroll;');
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Microsoft.TemplateEngine.Cli;

internal static class CollectionExtensions
{
public static void AddRange<T>(this ICollection<T> collection, IEnumerable<T> items)
{
foreach (T item in items)
{
collection.Add(item);
}
}
}
Loading