Skip to content

Commit

Permalink
.NET 4.6.2 is supported.
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoYang06 committed Dec 16, 2021
1 parent 08af4fa commit 8fdde11
Show file tree
Hide file tree
Showing 5 changed files with 198 additions and 198 deletions.
42 changes: 21 additions & 21 deletions Source/Demos/Wif.Demo.Common/Wif.Demo.Common.csproj
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Output\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Output\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Wif.Core\Wif.Core.csproj" />
<ProjectReference Include="..\..\Wif.Infrastructure\Wif.Infrastructure.csproj" />
<ProjectReference Include="..\..\Wif.Utilities\Wif.Utilities.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net472'">
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WindowsBase" />
</ItemGroup>
<PropertyGroup>
<TargetFrameworks>net462;net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Output\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Output\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Wif.Core\Wif.Core.csproj" />
<ProjectReference Include="..\..\Wif.Infrastructure\Wif.Infrastructure.csproj" />
<ProjectReference Include="..\..\Wif.Utilities\Wif.Utilities.csproj" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net462'))">
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WindowsBase" />
</ItemGroup>

</Project>
80 changes: 40 additions & 40 deletions Source/Demos/Wif.Demo/Wif.Demo.csproj
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Output\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Output\Release\</OutputPath>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net472'">
<Reference Include="PresentationFramework.Aero2" />
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
<PackageReference Include="System.Reactive" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Wif.Core\Wif.Core.csproj" />
<ProjectReference Include="..\..\Wif.Infrastructure\Wif.Infrastructure.csproj" />
<ProjectReference Include="..\..\Wif.Utilities\Wif.Utilities.csproj" />
<ProjectReference Include="..\Wif.Demo.Common\Wif.Demo.Common.csproj" />
</ItemGroup>
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net462;net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Output\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Output\Release\</OutputPath>
</PropertyGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net462'))">
<Reference Include="PresentationFramework.Aero2" />
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
<PackageReference Include="System.Reactive" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Wif.Core\Wif.Core.csproj" />
<ProjectReference Include="..\..\Wif.Infrastructure\Wif.Infrastructure.csproj" />
<ProjectReference Include="..\..\Wif.Utilities\Wif.Utilities.csproj" />
<ProjectReference Include="..\Wif.Demo.Common\Wif.Demo.Common.csproj" />
</ItemGroup>

</Project>
90 changes: 45 additions & 45 deletions Source/Wif.Core/Wif.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<RootNamespace>Frontier.Wif.Core</RootNamespace>
<Version>0.3.0.21286</Version>
<Authors>LeoYang-Chuese</Authors>
<Description>WPF Infrastructure Framework(WIF)is an infrastructure framework that helps you develop WPF applications quickly.</Description>
<Copyright>Copyright © 2021 LeoYang-Chuese. All rights reserved.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/LeoYang-Chuese/wif</PackageProjectUrl>
<PackageIcon>wif_logo.png</PackageIcon>
<RepositoryUrl>https://github.com/LeoYang-Chuese/wif.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>WPF;UI;Infrastructure;Utilities;Modern;XAML;Toolkit;Library;.NET;OpenSource</PackageTags>
<PackageReleaseNotes>https://github.com/LeoYang-Chuese/wif/releases</PackageReleaseNotes>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Output\Debug\</OutputPath>
<DocumentationFile>..\Output\Debug\Wif.Core.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Output\Release\</OutputPath>
<DocumentationFile>..\Output\Release\Wif.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Wif.Utilities\Wif.Utilities.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net472'">
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Resources\Images\wif_logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="WpfAnalyzers" Version="3.5.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<TargetFrameworks>net462;net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<RootNamespace>Frontier.Wif.Core</RootNamespace>
<Version>0.3.0.21349</Version>
<Authors>LeoYang-Chuese</Authors>
<Description>WPF Infrastructure Framework(WIF)is an infrastructure framework that helps you develop WPF applications quickly.</Description>
<Copyright>Copyright © 2021 LeoYang-Chuese. All rights reserved.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/LeoYang-Chuese/wif</PackageProjectUrl>
<PackageIcon>wif_logo.png</PackageIcon>
<RepositoryUrl>https://github.com/LeoYang-Chuese/wif.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>WPF;UI;Infrastructure;Utilities;Modern;XAML;Toolkit;Library;.NET;OpenSource</PackageTags>
<PackageReleaseNotes>https://github.com/LeoYang-Chuese/wif/releases</PackageReleaseNotes>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Output\Debug\</OutputPath>
<DocumentationFile>..\Output\Debug\Wif.Core.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Output\Release\</OutputPath>
<DocumentationFile>..\Output\Release\Wif.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Wif.Utilities\Wif.Utilities.csproj" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net462'))">
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Resources\Images\wif_logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="WpfAnalyzers" Version="3.5.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
96 changes: 48 additions & 48 deletions Source/Wif.Infrastructure/Wif.Infrastructure.csproj
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<RootNamespace>Frontier.Wif.Infrastructure</RootNamespace>
<Version>0.3.0.21286</Version>
<Description>WPF Infrastructure Framework(WIF)is an infrastructure framework that helps you develop WPF applications quickly.</Description>
<Authors>LeoYang-Chuese</Authors>
<Copyright>Copyright © 2021 LeoYang-Chuese. All rights reserved.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/LeoYang-Chuese/wif</PackageProjectUrl>
<RepositoryUrl>https://github.com/LeoYang-Chuese/wif.git</RepositoryUrl>
<PackageIcon>wif_logo.png</PackageIcon>
<PackageTags>WPF;UI;Infrastructure;Utilities;Modern;XAML;Toolkit;Library;.NET;OpenSource</PackageTags>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>https://github.com/LeoYang-Chuese/wif/releases</PackageReleaseNotes>
<UserSecretsId>a46f13f6-c033-4863-be99-bcc4634651c6</UserSecretsId>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Output\Debug\</OutputPath>
<DocumentationFile>..\Output\Debug\Wif.Infrastructure.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Output\Release\</OutputPath>
<DocumentationFile>..\Output\Release\Wif.Infrastructure.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.19" />
<PackageReference Include="WpfAnalyzers" Version="3.5.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wif.Core\Wif.Core.csproj" />
<ProjectReference Include="..\Wif.Utilities\Wif.Utilities.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net472'">
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Resources\Images\wif_logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<PropertyGroup>
<TargetFrameworks>net462;net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<RootNamespace>Frontier.Wif.Infrastructure</RootNamespace>
<Version>0.3.0.21349</Version>
<Description>WPF Infrastructure Framework(WIF)is an infrastructure framework that helps you develop WPF applications quickly.</Description>
<Authors>LeoYang-Chuese</Authors>
<Copyright>Copyright © 2021 LeoYang-Chuese. All rights reserved.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/LeoYang-Chuese/wif</PackageProjectUrl>
<RepositoryUrl>https://github.com/LeoYang-Chuese/wif.git</RepositoryUrl>
<PackageIcon>wif_logo.png</PackageIcon>
<PackageTags>WPF;UI;Infrastructure;Utilities;Modern;XAML;Toolkit;Library;.NET;OpenSource</PackageTags>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>https://github.com/LeoYang-Chuese/wif/releases</PackageReleaseNotes>
<UserSecretsId>a46f13f6-c033-4863-be99-bcc4634651c6</UserSecretsId>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Output\Debug\</OutputPath>
<DocumentationFile>..\Output\Debug\Wif.Infrastructure.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Output\Release\</OutputPath>
<DocumentationFile>..\Output\Release\Wif.Infrastructure.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.19" />
<PackageReference Include="WpfAnalyzers" Version="3.5.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wif.Core\Wif.Core.csproj" />
<ProjectReference Include="..\Wif.Utilities\Wif.Utilities.csproj" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net462'))">
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Resources\Images\wif_logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>
Loading

0 comments on commit 8fdde11

Please sign in to comment.