-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to main solution for PS build, update a few more projects with manual target frameworks, add CFG setting for configuration.
- Loading branch information
Showing
7 changed files
with
201 additions
and
850 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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
16 changes: 16 additions & 0 deletions
16
src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Properties/AssemblyInfo.cs
This file contains 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,16 @@ | ||
// ----------------------------------------------------------------------------- | ||
// <copyright file="AssemblyInfo.cs" company="Microsoft Corporation"> | ||
// Copyright (c) Microsoft Corporation. Licensed under the MIT License. | ||
// </copyright> | ||
// ----------------------------------------------------------------------------- | ||
|
||
#if NET | ||
|
||
using System.Runtime.Versioning; | ||
|
||
// Forcibly set the target and supported platforms due to the internal build setup. | ||
// Keep in sync with project versions. | ||
[assembly: TargetPlatform("Windows10.0.22000.0")] | ||
[assembly: SupportedOSPlatform("Windows10.0.18362.0")] | ||
|
||
#endif |
This file contains 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
16 changes: 16 additions & 0 deletions
16
src/PowerShell/Microsoft.WinGet.Client.Engine/Properties/AssemblyInfo.cs
This file contains 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,16 @@ | ||
// ----------------------------------------------------------------------------- | ||
// <copyright file="AssemblyInfo.cs" company="Microsoft Corporation"> | ||
// Copyright (c) Microsoft Corporation. Licensed under the MIT License. | ||
// </copyright> | ||
// ----------------------------------------------------------------------------- | ||
|
||
#if NET | ||
|
||
using System.Runtime.Versioning; | ||
|
||
// Forcibly set the target and supported platforms due to the internal build setup. | ||
// Keep in sync with project versions. | ||
[assembly: TargetPlatform("Windows10.0.22000.0")] | ||
[assembly: SupportedOSPlatform("Windows10.0.18362.0")] | ||
|
||
#endif |
Oops, something went wrong.