Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.2 #2

Merged
merged 2 commits into from
Jul 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 11 additions & 69 deletions PSXCardReader.NET.Presenter/PSXCardReader.NET.Presenter.csproj
Original file line number Diff line number Diff line change
@@ -1,71 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{49700250-ADA1-4858-826D-647830547CED}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PSXCardReader.NET.Presenter</RootNamespace>
<AssemblyName>PSXCardReader.NET.Presenter</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="PSXMMCLibrary, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\PSXMMCLibrary\PSXMMCLibrary\bin\Release\PSXMMCLibrary.dll</HintPath>
</Reference>
<Reference Include="PSXMMCLibrary.Models, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\PSXMMCLibrary\PSXMMCLibrary\bin\Release\PSXMMCLibrary.Models.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Interfaces\IMainPresenter.cs" />
<Compile Include="Interfaces\ITracePresenter.cs" />
<Compile Include="MainPresenter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TextBoxTracePresenter.cs" />
</ItemGroup>
<Project Sdk="Microsoft.NET.Sdk">

<ItemGroup>
<ProjectReference Include="..\PSXCardReader.NET.View\PSXCardReader.NET.View.csproj">
<Project>{089637a6-281a-4631-a23c-b993ed2bc6cc}</Project>
<Name>PSXCardReader.NET.View</Name>
</ProjectReference>
<ProjectReference Include="..\PSXMMCLibrary\PSXMMCLibrary\PSXMMCLibrary.csproj" />
<ProjectReference Include="..\PSXCardReader.NET.View\PSXCardReader.NET.View.csproj" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

</Project>
6 changes: 3 additions & 3 deletions PSXCardReader.NET.Presenter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("PSXCardReader.NET.Presenter")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyCopyright("Copyright © InstilledBee 2015-2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.2.0.0")]
[assembly: AssemblyFileVersion("0.2.0.0")]
61 changes: 8 additions & 53 deletions PSXCardReader.NET.View/PSXCardReader.NET.View.csproj
Original file line number Diff line number Diff line change
@@ -1,57 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{089637A6-281A-4631-A23C-B993ED2BC6CC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PSXCardReader.NET.View</RootNamespace>
<AssemblyName>PSXCardReader.NET.View</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>

<ItemGroup>
<Compile Include="Interfaces\IBaseView.cs" />
<Compile Include="Interfaces\IMainView.cs" />
<Compile Include="Interfaces\ITraceView.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<PackageReference Include="System.Drawing.Common" Version="4.5.0" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

</Project>
6 changes: 3 additions & 3 deletions PSXCardReader.NET.View/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("PSXCardReader.NET.View")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyCopyright("Copyright © InstilledBee 2015-2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.2.0.0")]
[assembly: AssemblyFileVersion("0.2.0.0")]
58 changes: 35 additions & 23 deletions PSXCardReader.NET.sln
Original file line number Diff line number Diff line change
@@ -1,46 +1,58 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.40629.0
# Visual Studio 15
VisualStudioVersion = 15.0.27428.2005
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXCardReader.NET", "PSXCardReader.NET\PSXCardReader.NET.csproj", "{C417747B-755D-4C07-9CDE-A4A8207A28DF}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PSXCardReader.NET.View", "PSXCardReader.NET.View\PSXCardReader.NET.View.csproj", "{09658F64-6393-44A8-A9C7-D5E5691478D2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PSXCardReader.NET.Presenter", "PSXCardReader.NET.Presenter\PSXCardReader.NET.Presenter.csproj", "{2B53A258-64D4-43A3-AA21-9B8411EF82F3}"
ProjectSection(ProjectDependencies) = postProject
{484C81B8-F58F-48D4-BF94-16C050F01C2B} = {484C81B8-F58F-48D4-BF94-16C050F01C2B}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXCardReader.NET.Presenter", "PSXCardReader.NET.Presenter\PSXCardReader.NET.Presenter.csproj", "{49700250-ADA1-4858-826D-647830547CED}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PSXMMCLibrary", "PSXMMCLibrary", "{232BDE54-6C37-4D9E-A996-040645F2D4A6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXCardReader.NET.View", "PSXCardReader.NET.View\PSXCardReader.NET.View.csproj", "{089637A6-281A-4631-A23C-B993ED2BC6CC}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PSXMMCLibrary.Models", "PSXMMCLibrary\PSXMMCLibrary.Models\PSXMMCLibrary.Models.csproj", "{484C81B8-F58F-48D4-BF94-16C050F01C2B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXMMCLibrary", "PSXMMCLibrary\PSXMMCLibrary\PSXMMCLibrary.csproj", "{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PSXMMCLibrary", "PSXMMCLibrary\PSXMMCLibrary\PSXMMCLibrary.csproj", "{63B756F8-84BB-461A-99BA-A617B17E35CA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXMMCLibrary.Models", "PSXMMCLibrary\PSXMMCLibrary.Models\PSXMMCLibrary.Models.csproj", "{BF0412A9-CAFD-42C9-8868-67FFFC390565}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSXCardReader.NET", "PSXCardReader.NET\PSXCardReader.NET.csproj", "{C417747B-755D-4C07-9CDE-A4A8207A28DF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{09658F64-6393-44A8-A9C7-D5E5691478D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{09658F64-6393-44A8-A9C7-D5E5691478D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{09658F64-6393-44A8-A9C7-D5E5691478D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{09658F64-6393-44A8-A9C7-D5E5691478D2}.Release|Any CPU.Build.0 = Release|Any CPU
{2B53A258-64D4-43A3-AA21-9B8411EF82F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2B53A258-64D4-43A3-AA21-9B8411EF82F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2B53A258-64D4-43A3-AA21-9B8411EF82F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2B53A258-64D4-43A3-AA21-9B8411EF82F3}.Release|Any CPU.Build.0 = Release|Any CPU
{484C81B8-F58F-48D4-BF94-16C050F01C2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{484C81B8-F58F-48D4-BF94-16C050F01C2B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{484C81B8-F58F-48D4-BF94-16C050F01C2B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{484C81B8-F58F-48D4-BF94-16C050F01C2B}.Release|Any CPU.Build.0 = Release|Any CPU
{63B756F8-84BB-461A-99BA-A617B17E35CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{63B756F8-84BB-461A-99BA-A617B17E35CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63B756F8-84BB-461A-99BA-A617B17E35CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63B756F8-84BB-461A-99BA-A617B17E35CA}.Release|Any CPU.Build.0 = Release|Any CPU
{C417747B-755D-4C07-9CDE-A4A8207A28DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C417747B-755D-4C07-9CDE-A4A8207A28DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C417747B-755D-4C07-9CDE-A4A8207A28DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C417747B-755D-4C07-9CDE-A4A8207A28DF}.Release|Any CPU.Build.0 = Release|Any CPU
{49700250-ADA1-4858-826D-647830547CED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{49700250-ADA1-4858-826D-647830547CED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{49700250-ADA1-4858-826D-647830547CED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{49700250-ADA1-4858-826D-647830547CED}.Release|Any CPU.Build.0 = Release|Any CPU
{089637A6-281A-4631-A23C-B993ED2BC6CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{089637A6-281A-4631-A23C-B993ED2BC6CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{089637A6-281A-4631-A23C-B993ED2BC6CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{089637A6-281A-4631-A23C-B993ED2BC6CC}.Release|Any CPU.Build.0 = Release|Any CPU
{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BF21B471-1928-4A7E-8BB2-0A13D106E6ED}.Release|Any CPU.Build.0 = Release|Any CPU
{BF0412A9-CAFD-42C9-8868-67FFFC390565}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BF0412A9-CAFD-42C9-8868-67FFFC390565}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BF0412A9-CAFD-42C9-8868-67FFFC390565}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BF0412A9-CAFD-42C9-8868-67FFFC390565}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{484C81B8-F58F-48D4-BF94-16C050F01C2B} = {232BDE54-6C37-4D9E-A996-040645F2D4A6}
{63B756F8-84BB-461A-99BA-A617B17E35CA} = {232BDE54-6C37-4D9E-A996-040645F2D4A6}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A9D3EC9C-02B2-41A0-8D79-60E822ABC162}
EndGlobalSection
EndGlobal
6 changes: 3 additions & 3 deletions PSXCardReader.NET/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
</configuration>
</configuration>
13 changes: 12 additions & 1 deletion PSXCardReader.NET/PSXCardReader.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PSXCardReader.NET</RootNamespace>
<AssemblyName>PSXCardReader.NET</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -34,6 +35,15 @@
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>packages\System.Drawing.Common.4.5.0\lib\net461\System.Drawing.Common.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>packages\System.Runtime.CompilerServices.Unsafe.4.5.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding.CodePages, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>packages\System.Text.Encoding.CodePages.4.5.0\lib\net461\System.Text.Encoding.CodePages.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
Expand Down Expand Up @@ -74,6 +84,7 @@
<EmbeddedResource Include="TextBoxTraceView.resx">
<DependentUpon>TextBoxTraceView.cs</DependentUpon>
</EmbeddedResource>
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
Expand Down
6 changes: 3 additions & 3 deletions PSXCardReader.NET/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("InstilledBee")]
[assembly: AssemblyProduct("PSXCardReader.NET")]
[assembly: AssemblyCopyright("Copyright © InstilledBee 2015")]
[assembly: AssemblyCopyright("Copyright © InstilledBee 2015-2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")]
[assembly: AssemblyVersion("0.2.0.0")]
[assembly: AssemblyFileVersion("0.2.0.0")]
2 changes: 1 addition & 1 deletion PSXCardReader.NET/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion PSXCardReader.NET/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions PSXCardReader.NET/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="System.Drawing.Common" version="4.5.0" targetFramework="net461" />
<package id="System.Runtime.CompilerServices.Unsafe" version="4.5.0" targetFramework="net461" />
<package id="System.Text.Encoding.CodePages" version="4.5.0" targetFramework="net461" />
</packages>
2 changes: 1 addition & 1 deletion PSXMMCLibrary