Skip to content

Commit eba45a7

Browse files
committed
Migrated solution to Visual Studio 2022 and changed platform target to x64.
Signed-off-by: Robert F. Frasca <[email protected]>
1 parent 81d8180 commit eba45a7

File tree

4 files changed

+87
-3
lines changed

4 files changed

+87
-3
lines changed

src/PDFKeeper.Core/PDFKeeper.Core.csproj

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,28 @@
4242
<AssemblyOriginatorKeyFile>
4343
</AssemblyOriginatorKeyFile>
4444
</PropertyGroup>
45+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
46+
<DebugSymbols>true</DebugSymbols>
47+
<OutputPath>..\PDFKeeper.WinForms\bin\x64\Debug\</OutputPath>
48+
<DefineConstants>DEBUG;TRACE</DefineConstants>
49+
<NoWarn>MVVMTKCFG0001</NoWarn>
50+
<DebugType>full</DebugType>
51+
<PlatformTarget>x64</PlatformTarget>
52+
<LangVersion>7.3</LangVersion>
53+
<ErrorReport>prompt</ErrorReport>
54+
<CodeAnalysisRuleSet>PDFKeeper.Core.ruleset</CodeAnalysisRuleSet>
55+
</PropertyGroup>
56+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
57+
<OutputPath>..\PDFKeeper.WinForms\bin\x64\Release\</OutputPath>
58+
<DefineConstants>TRACE</DefineConstants>
59+
<Optimize>true</Optimize>
60+
<NoWarn>MVVMTKCFG0001</NoWarn>
61+
<DebugType>pdbonly</DebugType>
62+
<PlatformTarget>x64</PlatformTarget>
63+
<LangVersion>7.3</LangVersion>
64+
<ErrorReport>prompt</ErrorReport>
65+
<CodeAnalysisRuleSet>PDFKeeper.Core.ruleset</CodeAnalysisRuleSet>
66+
</PropertyGroup>
4567
<ItemGroup>
4668
<Reference Include="Microsoft.VisualBasic" />
4769
<Reference Include="Oracle.ManagedDataAccess, Version=4.122.23.1, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=MSIL">

src/PDFKeeper.PDFViewer/PDFKeeper.PDFViewer.csproj

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,28 @@
4141
<AssemblyOriginatorKeyFile>
4242
</AssemblyOriginatorKeyFile>
4343
</PropertyGroup>
44+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
45+
<DebugSymbols>true</DebugSymbols>
46+
<OutputPath>..\PDFKeeper.WinForms\bin\x64\Debug\</OutputPath>
47+
<DefineConstants>DEBUG;TRACE</DefineConstants>
48+
<NoWarn>MVVMTKCFG0001</NoWarn>
49+
<DebugType>full</DebugType>
50+
<PlatformTarget>x64</PlatformTarget>
51+
<LangVersion>7.3</LangVersion>
52+
<ErrorReport>prompt</ErrorReport>
53+
<CodeAnalysisRuleSet>PDFKeeper.PDFViewer.ruleset</CodeAnalysisRuleSet>
54+
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
56+
<OutputPath>..\PDFKeeper.WinForms\bin\x64\Release\</OutputPath>
57+
<DefineConstants>TRACE</DefineConstants>
58+
<Optimize>true</Optimize>
59+
<NoWarn>MVVMTKCFG0001</NoWarn>
60+
<DebugType>pdbonly</DebugType>
61+
<PlatformTarget>x64</PlatformTarget>
62+
<LangVersion>7.3</LangVersion>
63+
<ErrorReport>prompt</ErrorReport>
64+
<CodeAnalysisRuleSet>PDFKeeper.PDFViewer.ruleset</CodeAnalysisRuleSet>
65+
</PropertyGroup>
4466
<ItemGroup>
4567
<Reference Include="System" />
4668
<Reference Include="System.Core" />
@@ -89,6 +111,6 @@
89111
</ItemGroup>
90112
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
91113
<PropertyGroup>
92-
<PreBuildEvent>powershell.exe -ExecutionPolicy Bypass -file "..\..\..\Build\GetSumatraPDF.ps1"</PreBuildEvent>
114+
<PreBuildEvent>powershell.exe -ExecutionPolicy Bypass -file "..\..\..\..\Build\GetSumatraPDF.ps1"</PreBuildEvent>
93115
</PropertyGroup>
94116
</Project>

src/PDFKeeper.WinForms/PDFKeeper.WinForms.csproj

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,28 @@
5151
<PropertyGroup>
5252
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
5353
</PropertyGroup>
54+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
55+
<DebugSymbols>true</DebugSymbols>
56+
<OutputPath>bin\x64\Debug\</OutputPath>
57+
<DefineConstants>DEBUG;TRACE</DefineConstants>
58+
<NoWarn>MVVMTKCFG0001</NoWarn>
59+
<DebugType>full</DebugType>
60+
<PlatformTarget>x64</PlatformTarget>
61+
<LangVersion>7.3</LangVersion>
62+
<ErrorReport>prompt</ErrorReport>
63+
<CodeAnalysisRuleSet>PDFKeeper.WinForms.ruleset</CodeAnalysisRuleSet>
64+
</PropertyGroup>
65+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
66+
<OutputPath>bin\x64\Release\</OutputPath>
67+
<DefineConstants>TRACE</DefineConstants>
68+
<Optimize>true</Optimize>
69+
<NoWarn>MVVMTKCFG0001</NoWarn>
70+
<DebugType>pdbonly</DebugType>
71+
<PlatformTarget>x64</PlatformTarget>
72+
<LangVersion>7.3</LangVersion>
73+
<ErrorReport>prompt</ErrorReport>
74+
<CodeAnalysisRuleSet>PDFKeeper.WinForms.ruleset</CodeAnalysisRuleSet>
75+
</PropertyGroup>
5476
<ItemGroup>
5577
<Reference Include="System" />
5678
<Reference Include="System.Configuration" />

src/PDFKeeper.sln

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.29920.165
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.14.36518.9 d17.14
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "PDFKeeper.Setup", "PDFKeeper.Setup\PDFKeeper.Setup.wixproj", "{97756C6A-853A-4CBA-8507-D33B20B6DD07}"
77
ProjectSection(ProjectDependencies) = postProject
@@ -17,25 +17,43 @@ EndProject
1717
Global
1818
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1919
Debug|Any CPU = Debug|Any CPU
20+
Debug|x64 = Debug|x64
2021
Release|Any CPU = Release|Any CPU
22+
Release|x64 = Release|x64
2123
EndGlobalSection
2224
GlobalSection(ProjectConfigurationPlatforms) = postSolution
2325
{97756C6A-853A-4CBA-8507-D33B20B6DD07}.Debug|Any CPU.ActiveCfg = Debug|x64
2426
{97756C6A-853A-4CBA-8507-D33B20B6DD07}.Debug|Any CPU.Build.0 = Debug|x64
27+
{97756C6A-853A-4CBA-8507-D33B20B6DD07}.Debug|x64.ActiveCfg = Debug|x64
28+
{97756C6A-853A-4CBA-8507-D33B20B6DD07}.Debug|x64.Build.0 = Debug|x64
2529
{97756C6A-853A-4CBA-8507-D33B20B6DD07}.Release|Any CPU.ActiveCfg = Release|x64
2630
{97756C6A-853A-4CBA-8507-D33B20B6DD07}.Release|Any CPU.Build.0 = Release|x64
31+
{97756C6A-853A-4CBA-8507-D33B20B6DD07}.Release|x64.ActiveCfg = Release|x64
32+
{97756C6A-853A-4CBA-8507-D33B20B6DD07}.Release|x64.Build.0 = Release|x64
2733
{2F3D6A07-A88A-4B91-A28D-3CCECC3486F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2834
{2F3D6A07-A88A-4B91-A28D-3CCECC3486F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
35+
{2F3D6A07-A88A-4B91-A28D-3CCECC3486F9}.Debug|x64.ActiveCfg = Debug|x64
36+
{2F3D6A07-A88A-4B91-A28D-3CCECC3486F9}.Debug|x64.Build.0 = Debug|x64
2937
{2F3D6A07-A88A-4B91-A28D-3CCECC3486F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
3038
{2F3D6A07-A88A-4B91-A28D-3CCECC3486F9}.Release|Any CPU.Build.0 = Release|Any CPU
39+
{2F3D6A07-A88A-4B91-A28D-3CCECC3486F9}.Release|x64.ActiveCfg = Release|x64
40+
{2F3D6A07-A88A-4B91-A28D-3CCECC3486F9}.Release|x64.Build.0 = Release|x64
3141
{854466DF-9FFD-41AD-B22B-6E4DBDD37013}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3242
{854466DF-9FFD-41AD-B22B-6E4DBDD37013}.Debug|Any CPU.Build.0 = Debug|Any CPU
43+
{854466DF-9FFD-41AD-B22B-6E4DBDD37013}.Debug|x64.ActiveCfg = Debug|x64
44+
{854466DF-9FFD-41AD-B22B-6E4DBDD37013}.Debug|x64.Build.0 = Debug|x64
3345
{854466DF-9FFD-41AD-B22B-6E4DBDD37013}.Release|Any CPU.ActiveCfg = Release|Any CPU
3446
{854466DF-9FFD-41AD-B22B-6E4DBDD37013}.Release|Any CPU.Build.0 = Release|Any CPU
47+
{854466DF-9FFD-41AD-B22B-6E4DBDD37013}.Release|x64.ActiveCfg = Release|x64
48+
{854466DF-9FFD-41AD-B22B-6E4DBDD37013}.Release|x64.Build.0 = Release|x64
3549
{089191ED-733F-48CA-9F6E-086854A3EB10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3650
{089191ED-733F-48CA-9F6E-086854A3EB10}.Debug|Any CPU.Build.0 = Debug|Any CPU
51+
{089191ED-733F-48CA-9F6E-086854A3EB10}.Debug|x64.ActiveCfg = Debug|x64
52+
{089191ED-733F-48CA-9F6E-086854A3EB10}.Debug|x64.Build.0 = Debug|x64
3753
{089191ED-733F-48CA-9F6E-086854A3EB10}.Release|Any CPU.ActiveCfg = Release|Any CPU
3854
{089191ED-733F-48CA-9F6E-086854A3EB10}.Release|Any CPU.Build.0 = Release|Any CPU
55+
{089191ED-733F-48CA-9F6E-086854A3EB10}.Release|x64.ActiveCfg = Release|x64
56+
{089191ED-733F-48CA-9F6E-086854A3EB10}.Release|x64.Build.0 = Release|x64
3957
EndGlobalSection
4058
GlobalSection(SolutionProperties) = preSolution
4159
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)