-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Update assembly version from hardcoded to MajorVersion and update NetCoreAppCurrent to net8.0 #78354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ViktorHofer
merged 47 commits into
dotnet:main
from
carlossanlop:Net8ChangesSecondAttempt
Dec 5, 2022
Merged
Update assembly version from hardcoded to MajorVersion and update NetCoreAppCurrent to net8.0 #78354
Changes from 11 commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
17764b9
Update assembly version from hardcoded to MajorVersion
carlossanlop 04be22b
Adjust Microsoft.VisualBasic.Core
carlossanlop e1ab7c4
Adjust System.Diagnostics.EventLog
carlossanlop b74da6d
Adjust System.Resources.Extensions
carlossanlop 498421e
Adjust System.Runtime.Serialization.Xml
carlossanlop 7b33ff9
Extract the LocalEchoServer bits from the projects so that the helix …
carlossanlop 1091cec
Build the LocalEchoServers specifically without using artifacts
carlossanlop 2a40f98
Add missing files
carlossanlop 39e41c8
Use eng/targetingpacks.targets instead of wasm specific targets
carlossanlop bda1ada
Avoid duplicate imports, and don't use the targetingpacks.targets for…
carlossanlop 406dc14
Update NetCoreAppCurrent to net8.0 and NetCoreAppPrevious
ViktorHofer 057c3f8
Add NetCoreAppPrevious tfm to out-of-band projects
ViktorHofer 7a24341
Update reference source projects with new tfm
ViktorHofer 7b27686
Set maximum version early enough for SDK features
ViktorHofer da173cc
Update suppression files for tfm change
ViktorHofer 28fa14d
Merge remote-tracking branch 'origin/main' into Net8ChangesSecondAttempt
ViktorHofer ba30472
Fix libraries build because of ILLink warning
ViktorHofer 46780fd
Update 'net7.0' usages in the repo
ViktorHofer fa358ce
Update ymls
ViktorHofer 1068c54
Make trimming tests use the live built apphost
ViktorHofer 51ecadc
Add trimmingTests.props
ViktorHofer 2206104
UseLiveAppHost
ViktorHofer 5274dc5
Merge remote-tracking branch 'upstream/main' into Net8ChangesSecondAt…
ViktorHofer 94e88d9
Clean-up shared CoreLib suppression file
ViktorHofer eaff756
Live apphost issues with NativeExports
ViktorHofer b0c8d0b
Merge branch 'main' into Net8ChangesSecondAttempt
ViktorHofer 8f156e4
Merge branch 'main' into Net8ChangesSecondAttempt
ViktorHofer 00c3911
Update hardcoded tfm values in wasm build files
ViktorHofer 556b2cb
Remove explicit TF specification from JIT test
agocke a2bf701
[wasm] Fix debugger tests to run with net8.0
radical d343750
Merge branch 'Net8ChangesSecondAttempt' of https://github.com/carloss…
radical 338b4c3
[wasi] Sample: change net7.0 -> net8.0
radical 79c28de
add comment
radical 7194ec3
Don't try to restore 8.0 ILC with 7.0 SDK
sbomer 03ee362
Add missing file
radical 5435aa8
Add KnownILCompilerPack entry to targetingpacks.targets
ViktorHofer 739493d
Merge remote-tracking branch 'origin/main' into Net8ChangesSecondAttempt
ViktorHofer cfad266
Fix Hashing API only available in ref/Hashing net8.0.
ViktorHofer 2e136ad
Fix APICompat issue
ViktorHofer 70a3755
Fix more apicompat issues
ViktorHofer 9d808ba
Specify host configuration when building the host in yml
ViktorHofer d24dea5
Update AppleApp local build NetCoreAppCurrent
ViktorHofer 2a815b2
Fix S.S.Permissions apicompat suppression file
ViktorHofer ee2300e
Hack support for net8.0 tfm in installer tests
ViktorHofer 83279ca
Allow NativeExports to use a prebuilt apphost
ViktorHofer adcc6c8
UseLocalAppHostPack property
ViktorHofer 8907d92
Fix apphostsourcepath in DNNE project
ViktorHofer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| <Project> | ||
| <!-- This is for use with projects that don't need to be built with artifacts. And | ||
| need to be loadable by xharness. For example, aspnetcore middleware --> | ||
| <PropertyGroup> | ||
| <RepositoryRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)../, global.json))/</RepositoryRoot> | ||
| <BaseIntermediateOutputPath>$([MSBuild]::NormalizeDirectory($(RepositoryRoot), 'artifacts', 'obj', $(MSBuildProjectName)))</BaseIntermediateOutputPath> | ||
| <IntermediateOutputPath>$([MSBuild]::NormalizeDirectory($(BaseIntermediateOutputPath), $(Configuration)))</IntermediateOutputPath> | ||
| <OutputPath>$([MSBuild]::NormalizeDirectory($(RepositoryRoot), 'artifacts', 'bin', $(MSBuildProjectName), $(Configuration)))</OutputPath> | ||
| </PropertyGroup> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| <Project> | ||
| <!-- This is for use with projects that don't need to be built with artifacts. And | ||
| need to be loadable by xharness. For example, aspnetcore middleware --> | ||
| </Project> |
17 changes: 17 additions & 0 deletions
17
src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.helix.targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| <Project> | ||
| <PropertyGroup Condition="'$(IsRunningLibraryTests)' == 'true' and | ||
| ('$(Scenario)' == '' or '$(Scenario)' == 'normal' or | ||
| '$(Scenario)' == 'WasmTestOnBrowser' or '$(Scenario)' == 'WasmTestOnNodeJS')"> | ||
|
|
||
| <HelixExtensionTargets>$(HelixExtensionTargets);_AddMiddlewarePayload</HelixExtensionTargets> | ||
| <TestEchoMiddleware>$([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'bin', 'NetCoreServer', '$(Configuration)', '$(AspNetCoreAppCurrent)'))</TestEchoMiddleware> | ||
| <RemoteLoopMiddleware>$([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'bin', 'RemoteLoopServer', '$(Configuration)', '$(AspNetCoreAppCurrent)'))</RemoteLoopMiddleware> | ||
| </PropertyGroup> | ||
|
|
||
| <Target Name="_AddMiddlewarePayload"> | ||
| <ItemGroup> | ||
| <HelixCorrelationPayload Include="$(TestEchoMiddleware)" Destination="xharness/TestEchoMiddleware" Condition="Exists('$(TestEchoMiddleware)')" /> | ||
| <HelixCorrelationPayload Include="$(RemoteLoopMiddleware)" Destination="xharness/RemoteLoopMiddleware" Condition="Exists('$(RemoteLoopMiddleware)')" /> | ||
| </ItemGroup> | ||
| </Target> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/libraries/Common/tests/System/Net/Prerequisites/NetCoreServer/Directory.Build.props
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <RepositoryRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)../, global.json))/</RepositoryRoot> | ||
| </PropertyGroup> | ||
|
|
||
| <Import Project="$([MSBuild]::NormalizePath($(RepositoryRoot), 'eng', 'testing', 'ForXHarness.Directory.Build.props'))" /> | ||
| </Project> |
7 changes: 7 additions & 0 deletions
7
src/libraries/Common/tests/System/Net/Prerequisites/NetCoreServer/Directory.Build.targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <RepositoryRoot Condition="'$(RepositoryRoot)' == ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)../, global.json))/</RepositoryRoot> | ||
| </PropertyGroup> | ||
|
|
||
| <Import Project="$([MSBuild]::NormalizePath($(RepositoryRoot), 'eng', 'testing', 'ForXHarness.Directory.Build.targets'))" /> | ||
| </Project> |
4 changes: 3 additions & 1 deletion
4
src/libraries/Common/tests/System/Net/Prerequisites/NetCoreServer/NetCoreServer.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/libraries/Common/tests/System/Net/Prerequisites/RemoteLoopServer/Directory.Build.props
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <RepositoryRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)../, global.json))/</RepositoryRoot> | ||
| </PropertyGroup> | ||
|
|
||
| <Import Project="$([MSBuild]::NormalizePath($(RepositoryRoot), 'eng', 'testing', 'ForXHarness.Directory.Build.props'))" /> | ||
| </Project> |
7 changes: 7 additions & 0 deletions
7
src/libraries/Common/tests/System/Net/Prerequisites/RemoteLoopServer/Directory.Build.targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <RepositoryRoot Condition="'$(RepositoryRoot)' == ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)../, global.json))/</RepositoryRoot> | ||
| </PropertyGroup> | ||
|
|
||
| <Import Project="$([MSBuild]::NormalizePath($(RepositoryRoot), 'eng', 'testing', 'ForXHarness.Directory.Build.targets'))" /> | ||
| </Project> |
5 changes: 4 additions & 1 deletion
5
src/libraries/Common/tests/System/Net/Prerequisites/RemoteLoopServer/RemoteLoopServer.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
src/libraries/System.Resources.Extensions/tests/TestData.resources
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.