Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
12d9354
Use buffer.Length as the source of truth for ReadDirectoryChanges (#7…
github-actions[bot] Aug 17, 2022
6157b3d
[release/7.0-rc1] [wasm][debugger] Hide members from classes that don…
github-actions[bot] Aug 17, 2022
3d7d087
Product dependencies in Versions.props must be on the latest patch ve…
github-actions[bot] Aug 17, 2022
0f2546f
Don't set PublishAot in SDK by default (#74048)
github-actions[bot] Aug 17, 2022
d8866dc
Add missing .npmrc (#74039)
github-actions[bot] Aug 17, 2022
8baff7d
[release/7.0-rc1] [mono] Implement missing functionality for cctor in…
github-actions[bot] Aug 17, 2022
ceef11f
[release/7.0-rc1] Optimized string.Replace(char, char) (#74047)
github-actions[bot] Aug 17, 2022
02789c3
[release/7.0-rc1] Workload changes - account for SDK bands and use ar…
github-actions[bot] Aug 17, 2022
cad2af2
Vectorize {Last}IndexOf{Any}{Except} without code duplication (#73768…
adamsitnik Aug 17, 2022
d4b85ca
[release/7.0-rc1] perf pipeline: Switch to node 14.x (#74089)
github-actions[bot] Aug 17, 2022
dc98f58
Don't fail the test when the file is in use, fixes #73925 (#74094)
github-actions[bot] Aug 18, 2022
a969995
[release/7.0-rc1] Fix auto layout algorithm to compute structure alig…
github-actions[bot] Aug 18, 2022
7ea346d
[release/7.0-rc1] Add Arm64 PGO/IBC to Windows and Linux builds (#74098)
github-actions[bot] Aug 18, 2022
7ab10ff
[release/7.0-rc1] Set configureplatform.make prerelease to 0 (#74103)
carlossanlop Aug 18, 2022
68aebc1
[release/7.0-rc1] Fix nullable annotations on generic math interfaces…
github-actions[bot] Aug 18, 2022
08fdcb7
[release/7.0-rc1] Move runtimeconfig.template.json stuff to csproj (#…
github-actions[bot] Aug 18, 2022
0ec29b6
[release/7.0-rc1] [NativeAOT] Add method parameter names to stack tra…
github-actions[bot] Aug 18, 2022
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
Prev Previous commit
Next Next commit
[release/7.0-rc1] Move runtimeconfig.template.json stuff to csproj (#…
…74144)

* Move runtimeconfig.template.json stuff to csproj

NativeAOT ignores this and emits a warning. This fails the test build.

* It wasn't just one

* Update src/libraries/System.Resources.ResourceManager/tests/System.Resources.ResourceManager.Tests.csproj

Co-authored-by: Michal Strehovský <[email protected]>
Co-authored-by: Jan Kotas <[email protected]>
  • Loading branch information
3 people authored Aug 18, 2022
commit 08fdcb7e2d86292b529e7d662b691d8c86de678d
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
<TestRuntime>true</TestRuntime>
</PropertyGroup>
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Diagnostics.DefaultActivityIdFormatIsHierarchial" Value="true" />
</ItemGroup>
<ItemGroup>
<Compile Include="ActivityTests.cs" />
</ItemGroup>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
<TargetFramework>$(NetCoreAppCurrent)-windows</TargetFramework>
<TestRuntime>true</TestRuntime>
</PropertyGroup>
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Globalization.UseNls" Value="true" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\GetStringComparerTests.cs"
Link="GetStringComparerTests.cs" />
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
<TargetFramework>$(NetCoreAppCurrent)-windows</TargetFramework>
<NoWarn>$(NoWarn),SYSLIB0013</NoWarn>
</PropertyGroup>
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Globalization.UseNls" Value="true" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Helpers.cs"
Link="Helpers.cs" />
Expand Down

This file was deleted.