Skip to content

Commit 2e5ac15

Browse files
authored
Merge pull request #2 from instilledbee/v0.2
v0.2
2 parents b676c46 + f862aac commit 2e5ac15

12 files changed

Lines changed: 87 additions & 161 deletions

File tree

Lines changed: 11 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,13 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{49700250-ADA1-4858-826D-647830547CED}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>PSXCardReader.NET.Presenter</RootNamespace>
11-
<AssemblyName>PSXCardReader.NET.Presenter</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
14-
</PropertyGroup>
15-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16-
<DebugSymbols>true</DebugSymbols>
17-
<DebugType>full</DebugType>
18-
<Optimize>false</Optimize>
19-
<OutputPath>bin\Debug\</OutputPath>
20-
<DefineConstants>DEBUG;TRACE</DefineConstants>
21-
<ErrorReport>prompt</ErrorReport>
22-
<WarningLevel>4</WarningLevel>
23-
</PropertyGroup>
24-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25-
<DebugType>pdbonly</DebugType>
26-
<Optimize>true</Optimize>
27-
<OutputPath>bin\Release\</OutputPath>
28-
<DefineConstants>TRACE</DefineConstants>
29-
<ErrorReport>prompt</ErrorReport>
30-
<WarningLevel>4</WarningLevel>
31-
</PropertyGroup>
32-
<ItemGroup>
33-
<Reference Include="PSXMMCLibrary, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
34-
<SpecificVersion>False</SpecificVersion>
35-
<HintPath>..\..\PSXMMCLibrary\PSXMMCLibrary\bin\Release\PSXMMCLibrary.dll</HintPath>
36-
</Reference>
37-
<Reference Include="PSXMMCLibrary.Models, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
38-
<SpecificVersion>False</SpecificVersion>
39-
<HintPath>..\..\PSXMMCLibrary\PSXMMCLibrary\bin\Release\PSXMMCLibrary.Models.dll</HintPath>
40-
</Reference>
41-
<Reference Include="System" />
42-
<Reference Include="System.Core" />
43-
<Reference Include="System.Drawing" />
44-
<Reference Include="System.Xml.Linq" />
45-
<Reference Include="System.Data.DataSetExtensions" />
46-
<Reference Include="Microsoft.CSharp" />
47-
<Reference Include="System.Data" />
48-
<Reference Include="System.Xml" />
49-
</ItemGroup>
50-
<ItemGroup>
51-
<Compile Include="Interfaces\IMainPresenter.cs" />
52-
<Compile Include="Interfaces\ITracePresenter.cs" />
53-
<Compile Include="MainPresenter.cs" />
54-
<Compile Include="Properties\AssemblyInfo.cs" />
55-
<Compile Include="TextBoxTracePresenter.cs" />
56-
</ItemGroup>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
573
<ItemGroup>
58-
<ProjectReference Include="..\PSXCardReader.NET.View\PSXCardReader.NET.View.csproj">
59-
<Project>{089637a6-281a-4631-a23c-b993ed2bc6cc}</Project>
60-
<Name>PSXCardReader.NET.View</Name>
61-
</ProjectReference>
4+
<ProjectReference Include="..\PSXMMCLibrary\PSXMMCLibrary\PSXMMCLibrary.csproj" />
5+
<ProjectReference Include="..\PSXCardReader.NET.View\PSXCardReader.NET.View.csproj" />
626
</ItemGroup>
63-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
64-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
65-
Other similar extension points exist, see Microsoft.Common.targets.
66-
<Target Name="BeforeBuild">
67-
</Target>
68-
<Target Name="AfterBuild">
69-
</Target>
70-
-->
71-
</Project>
7+
8+
<PropertyGroup>
9+
<TargetFramework>netstandard2.0</TargetFramework>
10+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
11+
</PropertyGroup>
12+
13+
</Project>

PSXCardReader.NET.Presenter/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("PSXCardReader.NET.Presenter")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
13+
[assembly: AssemblyCopyright("Copyright © InstilledBee 2015-2018")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("0.2.0.0")]
36+
[assembly: AssemblyFileVersion("0.2.0.0")]
Lines changed: 8 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,12 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
43
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{089637A6-281A-4631-A23C-B993ED2BC6CC}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>PSXCardReader.NET.View</RootNamespace>
11-
<AssemblyName>PSXCardReader.NET.View</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
146
</PropertyGroup>
15-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16-
<DebugSymbols>true</DebugSymbols>
17-
<DebugType>full</DebugType>
18-
<Optimize>false</Optimize>
19-
<OutputPath>bin\Debug\</OutputPath>
20-
<DefineConstants>DEBUG;TRACE</DefineConstants>
21-
<ErrorReport>prompt</ErrorReport>
22-
<WarningLevel>4</WarningLevel>
23-
</PropertyGroup>
24-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25-
<DebugType>pdbonly</DebugType>
26-
<Optimize>true</Optimize>
27-
<OutputPath>bin\Release\</OutputPath>
28-
<DefineConstants>TRACE</DefineConstants>
29-
<ErrorReport>prompt</ErrorReport>
30-
<WarningLevel>4</WarningLevel>
31-
</PropertyGroup>
32-
<ItemGroup>
33-
<Reference Include="System" />
34-
<Reference Include="System.Core" />
35-
<Reference Include="System.Drawing" />
36-
<Reference Include="System.Windows.Forms" />
37-
<Reference Include="System.Xml.Linq" />
38-
<Reference Include="System.Data.DataSetExtensions" />
39-
<Reference Include="Microsoft.CSharp" />
40-
<Reference Include="System.Data" />
41-
<Reference Include="System.Xml" />
42-
</ItemGroup>
7+
438
<ItemGroup>
44-
<Compile Include="Interfaces\IBaseView.cs" />
45-
<Compile Include="Interfaces\IMainView.cs" />
46-
<Compile Include="Interfaces\ITraceView.cs" />
47-
<Compile Include="Properties\AssemblyInfo.cs" />
9+
<PackageReference Include="System.Drawing.Common" Version="4.5.0" />
4810
</ItemGroup>
49-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
50-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
51-
Other similar extension points exist, see Microsoft.Common.targets.
52-
<Target Name="BeforeBuild">
53-
</Target>
54-
<Target Name="AfterBuild">
55-
</Target>
56-
-->
57-
</Project>
11+
12+
</Project>

PSXCardReader.NET.View/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("PSXCardReader.NET.View")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
13+
[assembly: AssemblyCopyright("Copyright © InstilledBee 2015-2018")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("0.2.0.0")]
36+
[assembly: AssemblyFileVersion("0.2.0.0")]

PSXCardReader.NET.sln

Lines changed: 35 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,58 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.40629.0
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27428.2005
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXCardReader.NET", "PSXCardReader.NET\PSXCardReader.NET.csproj", "{C417747B-755D-4C07-9CDE-A4A8207A28DF}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PSXCardReader.NET.View", "PSXCardReader.NET.View\PSXCardReader.NET.View.csproj", "{09658F64-6393-44A8-A9C7-D5E5691478D2}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PSXCardReader.NET.Presenter", "PSXCardReader.NET.Presenter\PSXCardReader.NET.Presenter.csproj", "{2B53A258-64D4-43A3-AA21-9B8411EF82F3}"
9+
ProjectSection(ProjectDependencies) = postProject
10+
{484C81B8-F58F-48D4-BF94-16C050F01C2B} = {484C81B8-F58F-48D4-BF94-16C050F01C2B}
11+
EndProjectSection
712
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXCardReader.NET.Presenter", "PSXCardReader.NET.Presenter\PSXCardReader.NET.Presenter.csproj", "{49700250-ADA1-4858-826D-647830547CED}"
13+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PSXMMCLibrary", "PSXMMCLibrary", "{232BDE54-6C37-4D9E-A996-040645F2D4A6}"
914
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXCardReader.NET.View", "PSXCardReader.NET.View\PSXCardReader.NET.View.csproj", "{089637A6-281A-4631-A23C-B993ED2BC6CC}"
15+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PSXMMCLibrary.Models", "PSXMMCLibrary\PSXMMCLibrary.Models\PSXMMCLibrary.Models.csproj", "{484C81B8-F58F-48D4-BF94-16C050F01C2B}"
1116
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXMMCLibrary", "PSXMMCLibrary\PSXMMCLibrary\PSXMMCLibrary.csproj", "{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}"
17+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PSXMMCLibrary", "PSXMMCLibrary\PSXMMCLibrary\PSXMMCLibrary.csproj", "{63B756F8-84BB-461A-99BA-A617B17E35CA}"
1318
EndProject
14-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXMMCLibrary.Models", "PSXMMCLibrary\PSXMMCLibrary.Models\PSXMMCLibrary.Models.csproj", "{BF0412A9-CAFD-42C9-8868-67FFFC390565}"
19+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXCardReader.NET", "PSXCardReader.NET\PSXCardReader.NET.csproj", "{C417747B-755D-4C07-9CDE-A4A8207A28DF}"
1520
EndProject
1621
Global
1722
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1823
Debug|Any CPU = Debug|Any CPU
1924
Release|Any CPU = Release|Any CPU
2025
EndGlobalSection
2126
GlobalSection(ProjectConfigurationPlatforms) = postSolution
27+
{09658F64-6393-44A8-A9C7-D5E5691478D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28+
{09658F64-6393-44A8-A9C7-D5E5691478D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
29+
{09658F64-6393-44A8-A9C7-D5E5691478D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{09658F64-6393-44A8-A9C7-D5E5691478D2}.Release|Any CPU.Build.0 = Release|Any CPU
31+
{2B53A258-64D4-43A3-AA21-9B8411EF82F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32+
{2B53A258-64D4-43A3-AA21-9B8411EF82F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
33+
{2B53A258-64D4-43A3-AA21-9B8411EF82F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
34+
{2B53A258-64D4-43A3-AA21-9B8411EF82F3}.Release|Any CPU.Build.0 = Release|Any CPU
35+
{484C81B8-F58F-48D4-BF94-16C050F01C2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{484C81B8-F58F-48D4-BF94-16C050F01C2B}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{484C81B8-F58F-48D4-BF94-16C050F01C2B}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{484C81B8-F58F-48D4-BF94-16C050F01C2B}.Release|Any CPU.Build.0 = Release|Any CPU
39+
{63B756F8-84BB-461A-99BA-A617B17E35CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
40+
{63B756F8-84BB-461A-99BA-A617B17E35CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
41+
{63B756F8-84BB-461A-99BA-A617B17E35CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
42+
{63B756F8-84BB-461A-99BA-A617B17E35CA}.Release|Any CPU.Build.0 = Release|Any CPU
2243
{C417747B-755D-4C07-9CDE-A4A8207A28DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2344
{C417747B-755D-4C07-9CDE-A4A8207A28DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
2445
{C417747B-755D-4C07-9CDE-A4A8207A28DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
2546
{C417747B-755D-4C07-9CDE-A4A8207A28DF}.Release|Any CPU.Build.0 = Release|Any CPU
26-
{49700250-ADA1-4858-826D-647830547CED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{49700250-ADA1-4858-826D-647830547CED}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{49700250-ADA1-4858-826D-647830547CED}.Release|Any CPU.ActiveCfg = Release|Any CPU
29-
{49700250-ADA1-4858-826D-647830547CED}.Release|Any CPU.Build.0 = Release|Any CPU
30-
{089637A6-281A-4631-A23C-B993ED2BC6CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31-
{089637A6-281A-4631-A23C-B993ED2BC6CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
32-
{089637A6-281A-4631-A23C-B993ED2BC6CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
33-
{089637A6-281A-4631-A23C-B993ED2BC6CC}.Release|Any CPU.Build.0 = Release|Any CPU
34-
{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
35-
{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
36-
{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
37-
{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}.Release|Any CPU.Build.0 = Release|Any CPU
38-
{BF0412A9-CAFD-42C9-8868-67FFFC390565}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39-
{BF0412A9-CAFD-42C9-8868-67FFFC390565}.Debug|Any CPU.Build.0 = Debug|Any CPU
40-
{BF0412A9-CAFD-42C9-8868-67FFFC390565}.Release|Any CPU.ActiveCfg = Release|Any CPU
41-
{BF0412A9-CAFD-42C9-8868-67FFFC390565}.Release|Any CPU.Build.0 = Release|Any CPU
4247
EndGlobalSection
4348
GlobalSection(SolutionProperties) = preSolution
4449
HideSolutionNode = FALSE
4550
EndGlobalSection
51+
GlobalSection(NestedProjects) = preSolution
52+
{484C81B8-F58F-48D4-BF94-16C050F01C2B} = {232BDE54-6C37-4D9E-A996-040645F2D4A6}
53+
{63B756F8-84BB-461A-99BA-A617B17E35CA} = {232BDE54-6C37-4D9E-A996-040645F2D4A6}
54+
EndGlobalSection
55+
GlobalSection(ExtensibilityGlobals) = postSolution
56+
SolutionGuid = {A9D3EC9C-02B2-41A0-8D79-60E822ABC162}
57+
EndGlobalSection
4658
EndGlobal

PSXCardReader.NET/App.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
55
</startup>
6-
</configuration>
6+
</configuration>

PSXCardReader.NET/PSXCardReader.NET.csproj

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>PSXCardReader.NET</RootNamespace>
1111
<AssemblyName>PSXCardReader.NET</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -34,6 +35,15 @@
3435
<ItemGroup>
3536
<Reference Include="System" />
3637
<Reference Include="System.Core" />
38+
<Reference Include="System.Drawing.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
39+
<HintPath>packages\System.Drawing.Common.4.5.0\lib\net461\System.Drawing.Common.dll</HintPath>
40+
</Reference>
41+
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
42+
<HintPath>packages\System.Runtime.CompilerServices.Unsafe.4.5.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
43+
</Reference>
44+
<Reference Include="System.Text.Encoding.CodePages, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
45+
<HintPath>packages\System.Text.Encoding.CodePages.4.5.0\lib\net461\System.Text.Encoding.CodePages.dll</HintPath>
46+
</Reference>
3747
<Reference Include="System.Xml.Linq" />
3848
<Reference Include="System.Data.DataSetExtensions" />
3949
<Reference Include="Microsoft.CSharp" />
@@ -74,6 +84,7 @@
7484
<EmbeddedResource Include="TextBoxTraceView.resx">
7585
<DependentUpon>TextBoxTraceView.cs</DependentUpon>
7686
</EmbeddedResource>
87+
<None Include="packages.config" />
7788
<None Include="Properties\Settings.settings">
7889
<Generator>SettingsSingleFileGenerator</Generator>
7990
<LastGenOutput>Settings.Designer.cs</LastGenOutput>

PSXCardReader.NET/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("InstilledBee")]
1212
[assembly: AssemblyProduct("PSXCardReader.NET")]
13-
[assembly: AssemblyCopyright("Copyright © InstilledBee 2015")]
13+
[assembly: AssemblyCopyright("Copyright © InstilledBee 2015-2018")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.1.0.0")]
36-
[assembly: AssemblyFileVersion("0.1.0.0")]
35+
[assembly: AssemblyVersion("0.2.0.0")]
36+
[assembly: AssemblyFileVersion("0.2.0.0")]

PSXCardReader.NET/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PSXCardReader.NET/Properties/Settings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)