Skip to content

Commit f9953b5

Browse files
author
Jayson Ragasa
committed
updated to .NET Target Framework 4.8
1 parent 062ae3d commit f9953b5

File tree

20 files changed

+64
-36
lines changed

20 files changed

+64
-36
lines changed

CommonTools/CommonTools.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</UpgradeBackupLocation>
2727
<OldToolsVersion>3.5</OldToolsVersion>
2828
<IsWebBootstrapper>false</IsWebBootstrapper>
29-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
29+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
3030
<TargetFrameworkProfile />
3131
<PublishUrl>publish\</PublishUrl>
3232
<Install>true</Install>
@@ -52,6 +52,7 @@
5252
<DefineConstants>DEBUG;TRACE</DefineConstants>
5353
<ErrorReport>prompt</ErrorReport>
5454
<WarningLevel>4</WarningLevel>
55+
<Prefer32Bit>false</Prefer32Bit>
5556
</PropertyGroup>
5657
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
5758
<DebugType>pdbonly</DebugType>
@@ -60,6 +61,7 @@
6061
<DefineConstants>TRACE</DefineConstants>
6162
<ErrorReport>prompt</ErrorReport>
6263
<WarningLevel>4</WarningLevel>
64+
<Prefer32Bit>false</Prefer32Bit>
6365
</PropertyGroup>
6466
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
6567
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

CommonTools/app.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33

4-
</configuration>
4+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>

DataProtection/DataProtection.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>DataProtection</RootNamespace>
1212
<AssemblyName>DataProtection</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<FileUpgradeFlags>
1616
</FileUpgradeFlags>
1717
<UpgradeBackupLocation>
1818
</UpgradeBackupLocation>
1919
<OldToolsVersion>3.5</OldToolsVersion>
20+
<TargetFrameworkProfile />
2021
</PropertyGroup>
2122
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2223
<DebugSymbols>true</DebugSymbols>
@@ -27,6 +28,7 @@
2728
<ErrorReport>prompt</ErrorReport>
2829
<WarningLevel>4</WarningLevel>
2930
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
31+
<Prefer32Bit>false</Prefer32Bit>
3032
</PropertyGroup>
3133
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3234
<DebugType>pdbonly</DebugType>
@@ -36,6 +38,7 @@
3638
<ErrorReport>prompt</ErrorReport>
3739
<WarningLevel>4</WarningLevel>
3840
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
41+
<Prefer32Bit>false</Prefer32Bit>
3942
</PropertyGroup>
4043
<ItemGroup>
4144
<Reference Include="System" />

Database/Database.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Database</RootNamespace>
1212
<AssemblyName>Database</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<FileUpgradeFlags>
1616
</FileUpgradeFlags>
@@ -33,6 +33,7 @@
3333
<UseApplicationTrust>false</UseApplicationTrust>
3434
<BootstrapperEnabled>true</BootstrapperEnabled>
3535
<NuGetPackageImportStamp>b55a6807</NuGetPackageImportStamp>
36+
<TargetFrameworkProfile />
3637
</PropertyGroup>
3738
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3839
<DebugSymbols>true</DebugSymbols>
@@ -42,6 +43,7 @@
4243
<DefineConstants>DEBUG;TRACE</DefineConstants>
4344
<ErrorReport>prompt</ErrorReport>
4445
<WarningLevel>4</WarningLevel>
46+
<Prefer32Bit>false</Prefer32Bit>
4547
</PropertyGroup>
4648
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4749
<DebugType>pdbonly</DebugType>
@@ -50,6 +52,7 @@
5052
<DefineConstants>TRACE</DefineConstants>
5153
<ErrorReport>prompt</ErrorReport>
5254
<WarningLevel>4</WarningLevel>
55+
<Prefer32Bit>false</Prefer32Bit>
5356
</PropertyGroup>
5457
<ItemGroup>
5558
<Reference Include="System" />

Database/app.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33

44
<system.data>
55
<DbProviderFactories>
6-
<remove invariant="System.Data.SQLite" />
7-
<add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
6+
<remove invariant="System.Data.SQLite"/>
7+
<add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite"/>
88
</DbProviderFactories>
9-
</system.data></configuration>
9+
</system.data><startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>

Database/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="System.Data.SQLite" version="1.0.97.0" targetFramework="net35" />
4-
<package id="System.Data.SQLite.Core" version="1.0.97.0" targetFramework="net35" />
5-
<package id="System.Data.SQLite.Linq" version="1.0.97.0" targetFramework="net35" />
4+
<package id="System.Data.SQLite.Core" version="1.0.97.0" targetFramework="net35" requireReinstallation="true" />
5+
<package id="System.Data.SQLite.Linq" version="1.0.97.0" targetFramework="net35" requireReinstallation="true" />
66
</packages>

LiveInformationBox/LiveInformationBox.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>LiveInformationBox</RootNamespace>
1212
<AssemblyName>LiveInformationBox</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<StartupObject>
1616
</StartupObject>
@@ -19,6 +19,7 @@
1919
<UpgradeBackupLocation>
2020
</UpgradeBackupLocation>
2121
<OldToolsVersion>3.5</OldToolsVersion>
22+
<TargetFrameworkProfile />
2223
</PropertyGroup>
2324
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2425
<DebugSymbols>true</DebugSymbols>
@@ -28,6 +29,7 @@
2829
<DefineConstants>DEBUG;TRACE</DefineConstants>
2930
<ErrorReport>prompt</ErrorReport>
3031
<WarningLevel>4</WarningLevel>
32+
<Prefer32Bit>false</Prefer32Bit>
3133
</PropertyGroup>
3234
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3335
<DebugType>pdbonly</DebugType>
@@ -36,6 +38,7 @@
3638
<DefineConstants>TRACE</DefineConstants>
3739
<ErrorReport>prompt</ErrorReport>
3840
<WarningLevel>4</WarningLevel>
41+
<Prefer32Bit>false</Prefer32Bit>
3942
</PropertyGroup>
4043
<ItemGroup>
4144
<Reference Include="System" />

LiveInformationBox/Properties/Resources.Designer.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LiveInformationBox/Properties/Settings.Designer.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MsTscAxWrapper/MsTscAxWrapper.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>MsTscAxWrapper</RootNamespace>
1212
<AssemblyName>MsTscAxWrapper</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<FileUpgradeFlags>
1616
</FileUpgradeFlags>
@@ -32,6 +32,7 @@
3232
<IsWebBootstrapper>false</IsWebBootstrapper>
3333
<UseApplicationTrust>false</UseApplicationTrust>
3434
<BootstrapperEnabled>true</BootstrapperEnabled>
35+
<TargetFrameworkProfile />
3536
</PropertyGroup>
3637
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3738
<DebugSymbols>true</DebugSymbols>
@@ -41,6 +42,7 @@
4142
<DefineConstants>DEBUG;TRACE</DefineConstants>
4243
<ErrorReport>prompt</ErrorReport>
4344
<WarningLevel>4</WarningLevel>
45+
<Prefer32Bit>false</Prefer32Bit>
4446
</PropertyGroup>
4547
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4648
<DebugType>pdbonly</DebugType>
@@ -49,6 +51,7 @@
4951
<DefineConstants>TRACE</DefineConstants>
5052
<ErrorReport>prompt</ErrorReport>
5153
<WarningLevel>4</WarningLevel>
54+
<Prefer32Bit>false</Prefer32Bit>
5255
</PropertyGroup>
5356
<ItemGroup>
5457
<Reference Include="MSTSCLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">

0 commit comments

Comments
 (0)