Skip to content

Commit 55f0e0e

Browse files
added files
1 parent 4ba0058 commit 55f0e0e

34 files changed

+14890
-1
lines changed

App.config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
</configuration>

MAT.csproj

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" 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>{189219A1-9A2A-4B09-8F69-6207E9996F94}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>MAT</RootNamespace>
10+
<AssemblyName>MAT</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
<PublishUrl>publish\</PublishUrl>
16+
<Install>true</Install>
17+
<InstallFrom>Disk</InstallFrom>
18+
<UpdateEnabled>false</UpdateEnabled>
19+
<UpdateMode>Foreground</UpdateMode>
20+
<UpdateInterval>7</UpdateInterval>
21+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
22+
<UpdatePeriodically>false</UpdatePeriodically>
23+
<UpdateRequired>false</UpdateRequired>
24+
<MapFileExtensions>true</MapFileExtensions>
25+
<ApplicationRevision>0</ApplicationRevision>
26+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27+
<IsWebBootstrapper>false</IsWebBootstrapper>
28+
<UseApplicationTrust>false</UseApplicationTrust>
29+
<BootstrapperEnabled>true</BootstrapperEnabled>
30+
</PropertyGroup>
31+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32+
<PlatformTarget>AnyCPU</PlatformTarget>
33+
<DebugSymbols>true</DebugSymbols>
34+
<DebugType>full</DebugType>
35+
<Optimize>false</Optimize>
36+
<OutputPath>bin\Debug\</OutputPath>
37+
<DefineConstants>DEBUG;TRACE</DefineConstants>
38+
<ErrorReport>prompt</ErrorReport>
39+
<WarningLevel>4</WarningLevel>
40+
</PropertyGroup>
41+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
42+
<PlatformTarget>AnyCPU</PlatformTarget>
43+
<DebugType>pdbonly</DebugType>
44+
<Optimize>true</Optimize>
45+
<OutputPath>bin\Release\</OutputPath>
46+
<DefineConstants>TRACE</DefineConstants>
47+
<ErrorReport>prompt</ErrorReport>
48+
<WarningLevel>4</WarningLevel>
49+
</PropertyGroup>
50+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
51+
<DebugSymbols>true</DebugSymbols>
52+
<OutputPath>bin\x64\Debug\</OutputPath>
53+
<DefineConstants>DEBUG;TRACE</DefineConstants>
54+
<DebugType>full</DebugType>
55+
<PlatformTarget>x64</PlatformTarget>
56+
<LangVersion>7.3</LangVersion>
57+
<ErrorReport>prompt</ErrorReport>
58+
<Prefer32Bit>true</Prefer32Bit>
59+
</PropertyGroup>
60+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
61+
<OutputPath>bin\x64\Release\</OutputPath>
62+
<DefineConstants>TRACE</DefineConstants>
63+
<Optimize>true</Optimize>
64+
<DebugType>pdbonly</DebugType>
65+
<PlatformTarget>x64</PlatformTarget>
66+
<LangVersion>7.3</LangVersion>
67+
<ErrorReport>prompt</ErrorReport>
68+
<Prefer32Bit>true</Prefer32Bit>
69+
</PropertyGroup>
70+
<ItemGroup>
71+
<Reference Include="CommandLine, Version=2.9.1.0, Culture=neutral, PublicKeyToken=5a870481e358d379, processorArchitecture=MSIL">
72+
<HintPath>packages\CommandLineParser.2.9.1\lib\net461\CommandLine.dll</HintPath>
73+
</Reference>
74+
<Reference Include="System" />
75+
<Reference Include="System.Core" />
76+
<Reference Include="System.Xml.Linq" />
77+
<Reference Include="System.Data.DataSetExtensions" />
78+
<Reference Include="Microsoft.CSharp" />
79+
<Reference Include="System.Data" />
80+
<Reference Include="System.Net.Http" />
81+
<Reference Include="System.Xml" />
82+
</ItemGroup>
83+
<ItemGroup>
84+
<Compile Include="Program.cs" />
85+
<Compile Include="Properties\AssemblyInfo.cs" />
86+
</ItemGroup>
87+
<ItemGroup>
88+
<None Include="App.config" />
89+
<None Include="packages.config" />
90+
</ItemGroup>
91+
<ItemGroup>
92+
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
93+
<Visible>False</Visible>
94+
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 und x64%29</ProductName>
95+
<Install>true</Install>
96+
</BootstrapperPackage>
97+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
98+
<Visible>False</Visible>
99+
<ProductName>.NET Framework 3.5 SP1</ProductName>
100+
<Install>false</Install>
101+
</BootstrapperPackage>
102+
</ItemGroup>
103+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
104+
</Project>

MAT.csproj.user

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
4+
<StartArguments>
5+
</StartArguments>
6+
</PropertyGroup>
7+
<PropertyGroup>
8+
<PublishUrlHistory>publish\</PublishUrlHistory>
9+
<InstallUrlHistory />
10+
<SupportUrlHistory />
11+
<UpdateUrlHistory />
12+
<BootstrapperUrlHistory />
13+
<ErrorReportUrlHistory />
14+
<FallbackCulture>de-DE</FallbackCulture>
15+
<VerifyUploadedFiles>false</VerifyUploadedFiles>
16+
</PropertyGroup>
17+
</Project>

MAT.sln

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.32014.148
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MAT", "MAT.csproj", "{189219A1-9A2A-4B09-8F69-6207E9996F94}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Release|Any CPU = Release|Any CPU
13+
Release|x64 = Release|x64
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{189219A1-9A2A-4B09-8F69-6207E9996F94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{189219A1-9A2A-4B09-8F69-6207E9996F94}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{189219A1-9A2A-4B09-8F69-6207E9996F94}.Debug|x64.ActiveCfg = Debug|x64
19+
{189219A1-9A2A-4B09-8F69-6207E9996F94}.Debug|x64.Build.0 = Debug|x64
20+
{189219A1-9A2A-4B09-8F69-6207E9996F94}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{189219A1-9A2A-4B09-8F69-6207E9996F94}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{189219A1-9A2A-4B09-8F69-6207E9996F94}.Release|x64.ActiveCfg = Release|x64
23+
{189219A1-9A2A-4B09-8F69-6207E9996F94}.Release|x64.Build.0 = Release|x64
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {BE43F471-75F0-4066-9D25-9B513A0E3956}
30+
EndGlobalSection
31+
EndGlobal

0 commit comments

Comments
 (0)