Skip to content

Commit 7836880

Browse files
committed
Added Basic Method For XML MessageType
1 parent 4876732 commit 7836880

File tree

5 files changed

+565
-267
lines changed

5 files changed

+565
-267
lines changed

MessageParser.NET.sln

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

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.23107.0
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.21005.1
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MessageParser.NET", "MessageParser.NET\MessageParser.NET.csproj", "{795CDECF-219E-4F33-9792-8F2817BFFB42}"
7-
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Refrences", "Refrences\Refrences.csproj", "{50EC0A89-8713-491E-AA20-4D708A5F2B33}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MessageParser.Net", "MessageParser.Net\MessageParser.Net.csproj", "{64DB72DB-F061-4DDC-94B6-69BC1A845BC8}"
97
EndProject
108
Global
119
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1210
Debug|Any CPU = Debug|Any CPU
1311
Release|Any CPU = Release|Any CPU
1412
EndGlobalSection
1513
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16-
{795CDECF-219E-4F33-9792-8F2817BFFB42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17-
{795CDECF-219E-4F33-9792-8F2817BFFB42}.Debug|Any CPU.Build.0 = Debug|Any CPU
18-
{795CDECF-219E-4F33-9792-8F2817BFFB42}.Release|Any CPU.ActiveCfg = Release|Any CPU
19-
{795CDECF-219E-4F33-9792-8F2817BFFB42}.Release|Any CPU.Build.0 = Release|Any CPU
20-
{50EC0A89-8713-491E-AA20-4D708A5F2B33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21-
{50EC0A89-8713-491E-AA20-4D708A5F2B33}.Debug|Any CPU.Build.0 = Debug|Any CPU
22-
{50EC0A89-8713-491E-AA20-4D708A5F2B33}.Release|Any CPU.ActiveCfg = Release|Any CPU
23-
{50EC0A89-8713-491E-AA20-4D708A5F2B33}.Release|Any CPU.Build.0 = Release|Any CPU
14+
{64DB72DB-F061-4DDC-94B6-69BC1A845BC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{64DB72DB-F061-4DDC-94B6-69BC1A845BC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{64DB72DB-F061-4DDC-94B6-69BC1A845BC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{64DB72DB-F061-4DDC-94B6-69BC1A845BC8}.Release|Any CPU.Build.0 = Release|Any CPU
2418
EndGlobalSection
2519
GlobalSection(SolutionProperties) = preSolution
2620
HideSolutionNode = FALSE

MessageParser.NET/MessageParser.NET.csproj

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{795CDECF-219E-4F33-9792-8F2817BFFB42}</ProjectGuid>
7+
<ProjectGuid>{64DB72DB-F061-4DDC-94B6-69BC1A845BC8}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>MessageParser.NET</RootNamespace>
11-
<AssemblyName>MessageParser.NET</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
10+
<RootNamespace>MessageParser.Net</RootNamespace>
11+
<AssemblyName>MessageParser.Net</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
</PropertyGroup>
1515
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -31,8 +31,7 @@
3131
</PropertyGroup>
3232
<ItemGroup>
3333
<Reference Include="EPPlus">
34-
<HintPath>..\..\epplus\epplus\bin\Debug\EPPlus.dll</HintPath>
35-
<EmbedInteropTypes>False</EmbedInteropTypes>
34+
<HintPath>..\..\FrameWork\MessageParser.NET-master\MessageParser.NET-master\Refrences\EPPlus.dll</HintPath>
3635
</Reference>
3736
<Reference Include="System" />
3837
<Reference Include="System.Core" />
@@ -41,10 +40,10 @@
4140
<Reference Include="System.Data.DataSetExtensions" />
4241
<Reference Include="Microsoft.CSharp" />
4342
<Reference Include="System.Data" />
44-
<Reference Include="System.Net.Http" />
4543
<Reference Include="System.Xml" />
4644
</ItemGroup>
4745
<ItemGroup>
46+
<Compile Include="Class1.cs" />
4847
<Compile Include="Properties\AssemblyInfo.cs" />
4948
<Compile Include="Tools\ExcelParser.cs" />
5049
<Compile Include="Tools\ISO8583.cs" />

MessageParser.NET/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("MessageParser.NET")]
8+
[assembly: AssemblyTitle("MessageParser.Net")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("MessageParser.NET")]
12+
[assembly: AssemblyProduct("MessageParser.Net")]
1313
[assembly: AssemblyCopyright("Copyright © 2015")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
@@ -20,7 +20,7 @@
2020
[assembly: ComVisible(false)]
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("795cdecf-219e-4f33-9792-8f2817bffb42")]
23+
[assembly: Guid("3a17d077-8b75-428f-a69d-496a0f801008")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//

0 commit comments

Comments
 (0)