Skip to content

Commit 226bed9

Browse files
committed
Convert to Net5
1 parent 1cbba9c commit 226bed9

11 files changed

+765
-511
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,3 +306,9 @@ TesterMetadata.xml
306306

307307
# Backup files
308308
.bak
309+
310+
311+
# ProjectUpdrade & TryConvert files
312+
*.csproj.old
313+
*.vbproj.old
314+
*.bak
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 16
4+
VisualStudioVersion = 14.0.25420.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDashboard_LinkedInteractivity", "WpfDashboard_LinkedInteractivity\WpfDashboard_LinkedInteractivity.Net5.csproj", "{5D093E20-47DD-404C-9CBA-3CDCDA25A678}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDashboard_LinkedInteractivity", "WpfDashboard_LinkedInteractivity\WpfDashboard_LinkedInteractivity.csproj", "{5D093E20-47DD-404C-9CBA-3CDCDA25A678}"
7-
EndProject
8-
Global
9-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10-
Debug|Any CPU = Debug|Any CPU
11-
Release|Any CPU = Release|Any CPU
12-
EndGlobalSection
13-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Release|Any CPU.Build.0 = Release|Any CPU
18-
EndGlobalSection
19-
GlobalSection(SolutionProperties) = preSolution
20-
HideSolutionNode = FALSE
21-
EndGlobalSection
22-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
VisualStudioVersion = 14.0.25420.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDashboard_LinkedInteractivity", "WpfDashboard_LinkedInteractivity\WpfDashboard_LinkedInteractivity.csproj", "{5D093E20-47DD-404C-9CBA-3CDCDA25A678}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{5D093E20-47DD-404C-9CBA-3CDCDA25A678}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<configuration>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<configSections>
4+
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5+
<section name="DXThemeManager" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6+
</sectionGroup>
7+
</configSections>
38
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
9+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
510
</startup>
11+
12+
<userSettings>
13+
<DXThemeManager>
14+
<setting name="ApplicationThemeName" serializeAs="String">
15+
<value>Office2016White</value>
16+
</setting>
17+
</DXThemeManager>
18+
</userSettings>
619
</configuration>
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>net5.0-windows</TargetFramework>
4+
<OutputType>WinExe</OutputType>
5+
<RootNamespace>WpfDashboard_LinkedInteractivity</RootNamespace>
6+
<AssemblyName>WpfDashboard_LinkedInteractivity</AssemblyName>
7+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
8+
<UseWindowsForms>true</UseWindowsForms>
9+
<UseWPF>true</UseWPF>
10+
<Platforms>x86;AnyCPU</Platforms>
11+
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
12+
<DefaultItemExcludes>obj*/**</DefaultItemExcludes>
13+
</PropertyGroup>
14+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
16+
</PropertyGroup>
17+
<ItemGroup>
18+
<None Update="Data\NWind_SalesPerson.dat">
19+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
20+
</None>
21+
<AppDesigner Include="Properties\" />
22+
</ItemGroup>
23+
<ItemGroup>
24+
<None Update="Data\Dashboard.xml">
25+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
26+
</None>
27+
<None Update="Data\DashboardChild.xml">
28+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
29+
</None>
30+
</ItemGroup>
31+
<ItemGroup>
32+
<PackageReference Include="DevExpress.Dashboard.Core" Version="21.1.*-*" />
33+
<PackageReference Include="DevExpress.Data" Version="21.1.*-*" />
34+
<PackageReference Include="DevExpress.Data.Desktop" Version="21.1.*-*" />
35+
<PackageReference Include="DevExpress.DataAccess" Version="21.1.*-*" />
36+
<PackageReference Include="DevExpress.DataAccess.UI" Version="21.1.*-*" />
37+
<PackageReference Include="DevExpress.Document.Processor" Version="21.1.*-*" />
38+
<PackageReference Include="DevExpress.Images" Version="21.1.*-*" />
39+
<PackageReference Include="DevExpress.Map.Core" Version="21.1.*-*" />
40+
<PackageReference Include="DevExpress.Mvvm" Version="21.1.*-*" />
41+
<PackageReference Include="DevExpress.Office.Core" Version="21.1.*-*" />
42+
<PackageReference Include="DevExpress.Pdf.Core" Version="21.1.*-*" />
43+
<PackageReference Include="DevExpress.PivotGrid.Core" Version="21.1.*-*" />
44+
<PackageReference Include="DevExpress.Printing.Core" Version="21.1.*-*" />
45+
<PackageReference Include="DevExpress.RichEdit.Core" Version="21.1.*-*" />
46+
<PackageReference Include="DevExpress.RichEdit.Export" Version="21.1.*-*" />
47+
<PackageReference Include="DevExpress.Sparkline.Core" Version="21.1.*-*" />
48+
<PackageReference Include="DevExpress.TreeMap" Version="21.1.*-*" />
49+
<PackageReference Include="DevExpress.TreeMap.Core" Version="21.1.*-*" />
50+
<PackageReference Include="DevExpress.Win.TreeMap" Version="21.1.*-*" />
51+
<PackageReference Include="DevExpress.Wpf.Charts" Version="21.1.*-*" />
52+
<PackageReference Include="DevExpress.Wpf.Core" Version="21.1.*-*" />
53+
<PackageReference Include="DevExpress.Wpf.Dashboard" Version="21.1.*-*" />
54+
<PackageReference Include="DevExpress.Wpf.Docking" Version="21.1.*-*" />
55+
<PackageReference Include="DevExpress.Wpf.Grid.Core" Version="21.1.*-*" />
56+
<PackageReference Include="DevExpress.Wpf.LayoutControl" Version="21.1.*-*" />
57+
<PackageReference Include="DevExpress.Wpf.Map" Version="21.1.*-*" />
58+
<PackageReference Include="DevExpress.Wpf.Office" Version="21.1.*-*" />
59+
<PackageReference Include="DevExpress.Wpf.PivotGrid" Version="21.1.*-*" />
60+
<PackageReference Include="DevExpress.Wpf.Printing" Version="21.1.*-*" />
61+
<PackageReference Include="DevExpress.Wpf.PropertyGrid" Version="21.1.*-*" />
62+
<PackageReference Include="DevExpress.Wpf.Reporting" Version="21.1.*-*" />
63+
<PackageReference Include="DevExpress.Wpf.RichEdit" Version="21.1.*-*" />
64+
<PackageReference Include="DevExpress.Wpf.TreeMap" Version="21.1.*-*" />
65+
<PackageReference Include="DevExpress.Wpf.Themes.All" Version="21.1.*-*" />
66+
</ItemGroup>
67+
</Project>

0 commit comments

Comments
 (0)