-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Installer to SDK merge - Phase 1 #38804
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
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
a35089c
Moved files from history migration to the correct location. Removed f…
MiYanni 40e3463
Replace use of CoreSdkTargetFramework with SdkTargetFramework. Minor …
MiYanni 4a29624
Added modified files for doing certain build/CI mechanics from the or…
MiYanni 76a7d61
Added root-level changes (other than the sln) from the original featu…
MiYanni df5b512
Added core-sdk-tasks changes from the original feature/installer-merg…
MiYanni c805121
Added finalizer changes from the original feature/installer-merge bra…
MiYanni af491d7
Renamed the Installer's redist folder to redist-installer.
MiYanni 11702e2
Renamed Installer's redist.csproj to redist-installer.csproj.
MiYanni 39f3122
Added redist-installer changes from the original feature/installer-me…
MiYanni 9bbce48
Added core-sdk-tasks.Tests changes from the original feature/installe…
MiYanni 7afef88
Added EndToEnd changes from the original feature/installer-merge bran…
MiYanni 7a0cd49
Added Microsoft.DotNet.Tools.Tests.Utilities changes from the origina…
MiYanni 6010b75
Added the src projects to the solution and verified they build. For S…
MiYanni 6dae64e
Renamed the csproj for EndToEnd to match the folder and namespace name.
MiYanni 3abe3cf
Added test projects to the solution. They build but are not running t…
MiYanni 099aae7
Added necessary -nativeToolsOnMachine flags for using CMake and Disab…
MiYanni 4974e96
Renamed EndToEnd to EndToEnd-Installer.Tests.
MiYanni 6f1f244
Renamed EndToEnd.csproj to EndToEnd-Installer.Tests.csproj.
MiYanni 4dcc697
Added the new EndToEnd-Installer.Tests.csproj to the SLN and have it …
MiYanni 3a19059
Forgot necessary copying of ManualVersions.props for Helix testing.
MiYanni d1c6f5a
Merge branch 'main' into feature/installer-merge
MiYanni 6309e2f
Version sync after main merge.
MiYanni c0420b1
Version sync after main merge.
MiYanni 33cc028
Copy Installer Pipeline ymls (#40420)
ellahathaway 7640889
Moved the SourceBuild and VirtualMonoRepo folders back to the src dir…
MiYanni 7b8672a
Merge branch 'main' into feature/installer-merge
MiYanni ab749a1
Merge branch 'feature/installer-merge' of https://github.com/dotnet/s…
MiYanni 1c0971a
Version sync after main merge.
MiYanni 7eeac07
Merge branch 'main' into feature/installer-merge
MiYanni 955fb4b
Version sync after main merge.
MiYanni File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
@echo off | ||
powershell -NoLogo -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\build.ps1""" -restore -build -msbuildEngine dotnet %*" | ||
powershell -NoLogo -NoProfile -ExecutionPolicy ByPass -command "& """%~dp0eng\common\build.ps1""" -restore -build -nativeToolsOnMachine -msbuildEngine dotnet %*" | ||
exit /b %ErrorLevel% |
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,23 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<_SuppressSdkImports>false</_SuppressSdkImports> | ||
</PropertyGroup> | ||
|
||
<Target Name="PopulateGenerateChecksumItems" AfterTargets="Build" BeforeTargets="GenerateChecksums"> | ||
<ItemGroup> | ||
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.msi" /> | ||
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.exe" /> | ||
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.zip" Exclude="$(ArtifactsShippingPackagesDir)**\*.wixpack.zip" /> | ||
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.tar.gz" /> | ||
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.deb" /> | ||
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.rpm" /> | ||
<GenerateChecksumItems Include="%(InstallerFiles.Identity)"> | ||
<DestinationPath>%(FullPath).sha512</DestinationPath> | ||
</GenerateChecksumItems> | ||
</ItemGroup> | ||
</Target> | ||
|
||
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" /> | ||
|
||
</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,20 @@ | ||
<Project> | ||
|
||
<!-- | ||
The following properties (unlike those in version.props) are maintained manually. So | ||
when there is a merge conflict, the highest version should generally be chosen, rather | ||
than keeping what's in the branch, which is the usual strategy with version.props merge | ||
conflicts. | ||
|
||
Basically: In this file, choose the highest version when resolving merge conflicts. | ||
--> | ||
<PropertyGroup> | ||
<MicrosoftWindowsSDKNETRef10_0_17763PackageVersion>10.0.17763.31</MicrosoftWindowsSDKNETRef10_0_17763PackageVersion> | ||
<MicrosoftWindowsSDKNETRef10_0_18362PackageVersion>10.0.18362.31</MicrosoftWindowsSDKNETRef10_0_18362PackageVersion> | ||
<MicrosoftWindowsSDKNETRef10_0_19041PackageVersion>10.0.19041.31</MicrosoftWindowsSDKNETRef10_0_19041PackageVersion> | ||
<MicrosoftWindowsSDKNETRef10_0_20348PackageVersion>10.0.20348.31</MicrosoftWindowsSDKNETRef10_0_20348PackageVersion> | ||
<MicrosoftWindowsSDKNETRef10_0_22000PackageVersion>10.0.22000.31</MicrosoftWindowsSDKNETRef10_0_22000PackageVersion> | ||
<MicrosoftWindowsSDKNETRef10_0_22621PackageVersion>10.0.22621.31</MicrosoftWindowsSDKNETRef10_0_22621PackageVersion> | ||
</PropertyGroup> | ||
|
||
</Project> |
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.