-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Issue 12830 multi target demo console #12996
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
ricardobossan
merged 7 commits into
dotnet:main
from
ricardobossan:Issue_12830_Multi-Target_DemoConsole
Apr 24, 2025
Merged
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
735ca00
Makes the DemoConsole application multitarget
a6e1725
Moves back from net472 to net481
17cfdde
Modifies README.md file for DemoConsole and moves it one folder above…
c95f0b4
Add comment to address #13248
7b5b816
Unwrap long comment and reindent for better auto formatting
5e02119
Removes leftover code from early attempt to fix #13234
6f9ae8f
1 removed references rto Framework folder - it will be added in the n…
Tanya-Solyanik 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -308,6 +308,9 @@ paket-files/ | |
.idea/ | ||
*.sln.iml | ||
|
||
# ClaudiaIDE extension | ||
.claudiaideconfig | ||
|
||
# CodeRush | ||
.cr/ | ||
|
||
|
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
8 changes: 8 additions & 0 deletions
8
src/test/integration/DesignSurface/DemoConsole/Properties/launchSettings.json
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,8 @@ | ||
{ | ||
"profiles": { | ||
"DemoConsole": { | ||
"commandName": "Project", | ||
"nativeDebugging": false | ||
} | ||
} | ||
} |
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,57 @@ | ||
<Project> | ||
|
||
<Import | ||
Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" /> | ||
|
||
<PropertyGroup> | ||
<EnableXlfLocalization>false</EnableXlfLocalization> | ||
<UpdateXlfOnBuild>false</UpdateXlfOnBuild> | ||
|
||
<SuppressLicenseValidation>true</SuppressLicenseValidation> | ||
<NoWarn>$(NoWarn);SA1633</NoWarn> | ||
|
||
<!-- Do not build this project when doing a .NET product build. --> | ||
<!-- The files for this project have been removed from the .NET product due to licensing issues. --> | ||
<ExcludeFromDotNetBuild>true</ExcludeFromDotNetBuild> | ||
<IsTestUtilityProject>true</IsTestUtilityProject> | ||
<TargetFrameworks>$(NetCurrent)-windows;net481</TargetFrameworks> | ||
<!-- Unset TargetFramework as this property gets set in the repo's root. This is necessary to | ||
avoid over-building. --> | ||
<TargetFramework /> | ||
|
||
<DefaultItemExcludes Condition="'$(TargetFramework)' != 'net481'"> | ||
$(DefaultItemExcludes);**/Framework/*</DefaultItemExcludes> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'net481'"> | ||
<LangVersion>latest</LangVersion> | ||
ricardobossan marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' != 'net481'"> | ||
<!-- Include the Framework specific items as none so we can see them easily in the Solution | ||
Explorer. --> | ||
Tanya-Solyanik marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
<None Include="**/Framework/*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == '$(NetCurrent)-windows'"> | ||
<PackageReference Include="System.Runtime.Serialization.Formatters" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == '$(NetCurrent)-windows'"> | ||
<ProjectReference Include="..\..\..\..\System.Design\src\System.Design.Facade.csproj" /> | ||
<ProjectReference | ||
Include="..\..\..\..\System.Drawing.Design\src\System.Drawing.Design.Facade.csproj" /> | ||
<ProjectReference | ||
Include="..\..\..\..\System.Windows.Forms.Design\src\System.Windows.Forms.Design.csproj" /> | ||
<ProjectReference Include="..\..\..\..\System.Windows.Forms\System.Windows.Forms.csproj" /> | ||
<ProjectReference Include="..\..\..\..\System.Drawing.Common\src\System.Drawing.Common.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net481'"> | ||
<Reference Include="System.Windows.Forms" /> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.Design" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.
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.