Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@
"description": "Target net5.0"
}
],
"replaces": "net5.0",
"replaces": "FrameworkParameter",
"defaultValue": "net5.0"
},
"UseWindowsDesktopSdk": {
"type": "computed",
"value": "(Framework == \"netcoreapp3.1\" || Framework == \"netcoreapp3.0\")"
},
"langVersion": {
"type": "parameter",
"datatype": "text",
Expand Down Expand Up @@ -73,6 +77,27 @@
"path": "MainWindow.xaml"
}
],
"sources": [
{
"modifiers": [
{
"condition": "(UseWindowsDesktopSdk)",
"exclude": [
"Company.WpfApplication1.csproj"
],
"rename": {
"Company.WpfApplication3x1.csproj": "Company.WpfApplication1.csproj"
}
},
{
"condition": "(!UseWindowsDesktopSdk)",
"exclude": [
"Company.WpfApplication3x1.csproj"
]
}
]
}
],
"defaultName": "WpfApp1",
"postActions": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net5.0</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter-windows</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride-windows</TargetFramework>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.WpfApplication1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.WpfApplication1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@
"description": "Target net5.0"
}
],
"replaces": "net5.0",
"replaces": "FrameworkParameter",
"defaultValue": "net5.0"
},
"UseWindowsDesktopSdk": {
"type": "computed",
"value": "(Framework == \"netcoreapp3.1\" || Framework == \"netcoreapp3.0\")"
},
"langVersion": {
"type": "parameter",
"datatype": "text",
Expand Down Expand Up @@ -73,6 +77,27 @@
"path": "MainWindow.xaml"
}
],
"sources": [
{
"modifiers": [
{
"condition": "(UseWindowsDesktopSdk)",
"exclude": [
"Company.WpfApplication1.vbproj"
],
"rename": {
"Company.WpfApplication3x1.vbproj": "Company.WpfApplication1.vbproj"
}
},
{
"condition": "(!UseWindowsDesktopSdk)",
"exclude": [
"Company.WpfApplication3x1.vbproj"
]
}
]
}
],
"defaultName": "WpfApp1",
"postActions": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net5.0</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter-windows</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride-windows</TargetFramework>
<RootNamespace>Company.WpfApplication1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<RootNamespace>Company.WpfApplication1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
</PropertyGroup>

<ItemGroup>
<Import Include="System.Windows" />
<Import Include="System.Windows.Controls" />
<Import Include="System.Windows.Data" />
<Import Include="System.Windows.Documents" />
<Import Include="System.Windows.Input" />
<Import Include="System.Windows.Media" />
<Import Include="System.Windows.Media.Imaging" />
<Import Include="System.Windows.Navigation" />
<Import Include="System.Windows.Shapes" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@
"description": "Target net5.0"
}
],
"replaces": "net5.0",
"replaces": "FrameworkParameter",
"defaultValue": "net5.0"
},
"UseWindowsDesktopSdk": {
"type": "computed",
"value": "(Framework == \"netcoreapp3.1\" || Framework == \"netcoreapp3.0\")"
},
"langVersion": {
"type": "parameter",
"datatype": "text",
Expand All @@ -69,6 +73,27 @@
"path": "Class1.cs"
}
],
"sources": [
{
"modifiers": [
{
"condition": "(UseWindowsDesktopSdk)",
"exclude": [
"Company.ClassLibrary1.csproj"
],
"rename": {
"Company.ClassLibrary3x1.csproj": "Company.ClassLibrary1.csproj"
}
},
{
"condition": "(!UseWindowsDesktopSdk)",
"exclude": [
"Company.ClassLibrary3x1.csproj"
]
}
]
}
],
"defaultName": "WpfLibrary1",
"postActions": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net5.0</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter-windows</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride-windows</TargetFramework>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.ClassLibrary1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.ClassLibrary1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@
"description": "Target net5.0"
}
],
"replaces": "net5.0",
"replaces": "FrameworkParameter",
"defaultValue": "net5.0"
},
"UseWindowsDesktopSdk": {
"type": "computed",
"value": "(Framework == \"netcoreapp3.1\" || Framework == \"netcoreapp3.0\")"
},
"langVersion": {
"type": "parameter",
"datatype": "text",
Expand All @@ -69,6 +73,27 @@
"path": "Class1.vb"
}
],
"sources": [
{
"modifiers": [
{
"condition": "(UseWindowsDesktopSdk)",
"exclude": [
"Company.ClassLibrary1.vbproj"
],
"rename": {
"Company.ClassLibrary3x1.vbproj": "Company.ClassLibrary1.vbproj"
}
},
{
"condition": "(!UseWindowsDesktopSdk)",
"exclude": [
"Company.ClassLibrary3x1.vbproj"
]
}
]
}
],
"defaultName": "WpfLibrary1",
"postActions": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<RootNamespace>Company.ClassLibrary1</RootNamespace>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net5.0</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter-windows</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride-windows</TargetFramework>
<RootNamespace>Company.ClassLibrary1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<RootNamespace>Company.ClassLibrary1</RootNamespace>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<RootNamespace>Company.ClassLibrary1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@
"description": "Target net5.0"
}
],
"replaces": "net5.0",
"replaces": "FrameworkParameter",
"defaultValue": "net5.0"
},
"UseWindowsDesktopSdk": {
"type": "computed",
"value": "(Framework == \"netcoreapp3.1\" || Framework == \"netcoreapp3.0\")"
},
"langVersion": {
"type": "parameter",
"datatype": "text",
Expand All @@ -69,6 +73,27 @@
"path": "CustomControl1.cs"
}
],
"sources": [
{
"modifiers": [
{
"condition": "(UseWindowsDesktopSdk)",
"exclude": [
"Company.WpfCustomControlLibrary.csproj"
],
"rename": {
"Company.WpfCustomControlLibrary3x.csproj": "Company.WpfCustomControlLibrary.csproj"
}
},
{
"condition": "(!UseWindowsDesktopSdk)",
"exclude": [
"Company.WpfCustomControlLibrary3x.csproj"
]
}
]
}
],
"defaultName": "WpfCustomControlLibrary1",
"postActions": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net5.0</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter-windows</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride-windows</TargetFramework>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.WpfCustomControlLibrary</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">FrameworkParameter</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.WpfCustomControlLibrary</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
<UseWPF>true</UseWPF>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@
"description": "Target net5.0"
}
],
"replaces": "net5.0",
"replaces": "FrameworkParameter",
"defaultValue": "net5.0"
},
"UseWindowsDesktopSdk": {
"type": "computed",
"value": "(Framework == \"netcoreapp3.1\" || Framework == \"netcoreapp3.0\")"
},
"langVersion": {
"type": "parameter",
"datatype": "text",
Expand All @@ -69,6 +73,27 @@
"path": "CustomControl1.vb"
}
],
"sources": [
{
"modifiers": [
{
"condition": "(UseWindowsDesktopSdk)",
"exclude": [
"Company.WpfCustomControlLibrary.vbproj"
],
"rename": {
"Company.WpfCustomControlLibrary3x.vbproj": "Company.WpfCustomControlLibrary.vbproj"
}
},
{
"condition": "(!UseWindowsDesktopSdk)",
"exclude": [
"Company.WpfCustomControlLibrary3x.vbproj"
]
}
]
}
],
"defaultName": "WpfCustomControlLibrary1",
"postActions": [
{
Expand Down
Loading