forked from giotec/ParsePID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParsePID.csproj
60 lines (60 loc) · 2.33 KB
/
ParsePID.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D79EBD74-8695-4E45-AC2B-7DEF3BCCDF2D}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>ParsePID</RootNamespace>
<AssemblyName>ParsePID</AssemblyName>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<WarningLevel>4</WarningLevel>
<LangVersion>3</LangVersion>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<WarningLevel>4</WarningLevel>
<LangVersion>3</LangVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Parameter.cs" />
<Compile Include="ParseDefCsv.cs" />
<Compile Include="CsvColumn.cs" />
<Compile Include="Support.cs" />
<Compile Include="ParseSupportResponses.cs" />
<Compile Include="SupportResponse.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="data\" />
</ItemGroup>
<ItemGroup>
<None Include="COPYING.txt" />
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<Content Include="data\Subaru_mode22_def.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\2011 Impreza Diesel Responses.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\2014 Forester FB25 non-Turbo Responses.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\2015 Forester Diesel CVT Responses.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>