Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc847cda

Browse files
committed
Net Core - Upgrade to .Net 6
1 parentc6debe4 commitc847cda

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

‎CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.netcore.csproj‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111

1212
<PropertyGroup>
1313
<OutputType>Exe</OutputType>
14-
<TargetFrameworks>netcoreapp3.1;net5.0-windows</TargetFrameworks>
15-
<TargetFrameworksCondition="'$(VisualStudioVersion)'=='17.0'">$(TargetFrameworks);net6.0-windows</TargetFrameworks>
14+
<TargetFrameworks>net6.0-windows</TargetFrameworks>
1615
<TargetFrameworksCondition="'$(NETCoreAppMaximumVersion)'=='7.0'">$(TargetFrameworks);net7.0-windows</TargetFrameworks>
1716
<TargetFrameworksCondition="'$(NETCoreAppMaximumVersion)'=='8.0'">$(TargetFrameworks);net8.0-windows</TargetFrameworks>
1817
<RootNamespace>CefSharp.MinimalExample.OffScreen</RootNamespace>
@@ -32,7 +31,7 @@
3231
https://docs.microsoft.com/en-us/dotnet/core/deploying/single-file
3332
Defaults differ compared to .Net Core 3.1
3433
-->
35-
<PropertyGroupCondition="'$(TargetFramework)' != 'netcoreapp3.1' AND '$(PublishSingleFile)' == 'true'">
34+
<PropertyGroupCondition="'$(PublishSingleFile)' == 'true'">
3635
<!-- Extract all files to disk at runtime-->
3736
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
3837
<!-- Include our native files in the resulting exe-->

‎CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.netcore.csproj‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111

1212
<PropertyGroup>
1313
<OutputType>WinExe</OutputType>
14-
<TargetFrameworks>netcoreapp3.1;net5.0-windows</TargetFrameworks>
15-
<TargetFrameworksCondition="'$(VisualStudioVersion)'=='17.0'">$(TargetFrameworks);net6.0-windows</TargetFrameworks>
14+
<TargetFrameworks>net6.0-windows</TargetFrameworks>
1615
<TargetFrameworksCondition="'$(NETCoreAppMaximumVersion)'=='7.0'">$(TargetFrameworks);net7.0-windows</TargetFrameworks>
1716
<TargetFrameworksCondition="'$(NETCoreAppMaximumVersion)'=='8.0'">$(TargetFrameworks);net8.0-windows</TargetFrameworks>
1817
<UseWindowsForms>true</UseWindowsForms>
@@ -33,7 +32,7 @@
3332
https://docs.microsoft.com/en-us/dotnet/core/deploying/single-file
3433
Defaults differ compared to .Net Core 3.1
3534
-->
36-
<PropertyGroupCondition="'$(TargetFramework)' != 'netcoreapp3.1' AND '$(PublishSingleFile)' == 'true'">
35+
<PropertyGroupCondition="'$(PublishSingleFile)' == 'true'">
3736
<!-- Extract all files to disk at runtime-->
3837
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
3938
<!-- Include our native files in the resulting exe-->

‎CefSharp.MinimalExample.Wpf.HwndHost/CefSharp.MinimalExample.Wpf.HwndHost.netcore.csproj‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111

1212
<PropertyGroup>
1313
<OutputType>WinExe</OutputType>
14-
<TargetFrameworks>netcoreapp3.1;net5.0-windows</TargetFrameworks>
15-
<TargetFrameworksCondition="'$(VisualStudioVersion)'=='17.0'">$(TargetFrameworks);net6.0-windows</TargetFrameworks>
14+
<TargetFrameworks>net6.0-windows</TargetFrameworks>
1615
<TargetFrameworksCondition="'$(NETCoreAppMaximumVersion)'=='7.0'">$(TargetFrameworks);net7.0-windows</TargetFrameworks>
1716
<TargetFrameworksCondition="'$(NETCoreAppMaximumVersion)'=='8.0'">$(TargetFrameworks);net8.0-windows</TargetFrameworks>
1817
<UseWPF>true</UseWPF>
@@ -44,7 +43,7 @@
4443
https://docs.microsoft.com/en-us/dotnet/core/deploying/single-file
4544
Defaults differ compared to .Net Core 3.1
4645
-->
47-
<PropertyGroupCondition="'$(TargetFramework)' != 'netcoreapp3.1' AND '$(PublishSingleFile)' == 'true'">
46+
<PropertyGroupCondition="'$(PublishSingleFile)' == 'true'">
4847
<!-- Extract all files to disk at runtime-->
4948
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
5049
<!-- Include our native files in the resulting exe-->

‎CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.netcore.csproj‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111

1212
<PropertyGroup>
1313
<OutputType>WinExe</OutputType>
14-
<TargetFrameworks>netcoreapp3.1;net5.0-windows</TargetFrameworks>
15-
<TargetFrameworksCondition="'$(VisualStudioVersion)'=='17.0'">$(TargetFrameworks);net6.0-windows</TargetFrameworks>
14+
<TargetFrameworks>net6.0-windows</TargetFrameworks>
1615
<TargetFrameworksCondition="'$(NETCoreAppMaximumVersion)'=='7.0'">$(TargetFrameworks);net7.0-windows</TargetFrameworks>
1716
<TargetFrameworksCondition="'$(NETCoreAppMaximumVersion)'=='8.0'">$(TargetFrameworks);net8.0-windows</TargetFrameworks>
1817
<UseWPF>true</UseWPF>
@@ -44,7 +43,7 @@
4443
https://docs.microsoft.com/en-us/dotnet/core/deploying/single-file
4544
Defaults differ compared to .Net Core 3.1
4645
-->
47-
<PropertyGroupCondition="'$(TargetFramework)' != 'netcoreapp3.1' AND '$(PublishSingleFile)' == 'true'">
46+
<PropertyGroupCondition="'$(PublishSingleFile)' == 'true'">
4847
<!-- Extract all files to disk at runtime-->
4948
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
5049
<!-- Include our native files in the resulting exe-->

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp