Skip to content

Commit

Permalink
Removed .NET Core 3.1 configuration. Explicitly added support for lat…
Browse files Browse the repository at this point in the history
…est C# language.
  • Loading branch information
boydpatterson committed Sep 11, 2023
1 parent 4dc2fb5 commit dba25d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Source/Bars.Mvvm/Bars.Mvvm.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net462;netcoreapp3.1;net6.0-windows</TargetFrameworks>
<TargetFrameworks>net462;net6.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>latest</LangVersion>

<AssemblyName>ActiproSoftware.Bars.Mvvm.Wpf</AssemblyName>
<Product>Bars.Mvvm</Product>
Expand All @@ -18,7 +19,6 @@
<Copyright>Copyright (c) 2007-2023 Actipro Software LLC. All rights reserved.</Copyright>

<DefineConstants>CODE_ANALYSIS;WPF;DESKTOP</DefineConstants>
<DefineConstants Condition="'$(TargetFramework)' == 'netcoreapp3.1'">$(DefineConstants);NETCORE</DefineConstants>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down
4 changes: 2 additions & 2 deletions Source/DataGrid.Contrib/DataGrid.Contrib.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net462;netcoreapp3.1;net6.0-windows</TargetFrameworks>
<TargetFrameworks>net462;net6.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>latest</LangVersion>

<AssemblyName>ActiproSoftware.DataGrid.Contrib.Wpf</AssemblyName>
<Product>DataGrid.Contrib</Product>
Expand All @@ -18,7 +19,6 @@
<Copyright>Copyright (c) 2007-2023 Actipro Software LLC. All rights reserved.</Copyright>

<DefineConstants>CODE_ANALYSIS;WPF;DESKTOP</DefineConstants>
<DefineConstants Condition="'$(TargetFramework)' == 'netcoreapp3.1'">$(DefineConstants);NETCORE</DefineConstants>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net462;netcoreapp3.1;net6.0-windows</TargetFrameworks>
<TargetFrameworks>net462;net6.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>latest</LangVersion>

<AssemblyName>ActiproSoftware.Editors.Interop.DataGrid.Wpf</AssemblyName>
<Product>Editors.Interop.DataGrid</Product>
Expand All @@ -18,7 +19,6 @@
<Copyright>Copyright (c) 2007-2023 Actipro Software LLC. All rights reserved.</Copyright>

<DefineConstants>CODE_ANALYSIS;WPF;DESKTOP</DefineConstants>
<DefineConstants Condition="'$(TargetFramework)' == 'netcoreapp3.1'">$(DefineConstants);NETCORE</DefineConstants>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down

0 comments on commit dba25d8

Please sign in to comment.