-
Notifications
You must be signed in to change notification settings - Fork 0
/
Passthru.csproj
123 lines (123 loc) · 5.1 KB
/
Passthru.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" 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)' == '' ">x86</Platform>
<ProjectGuid>{008A8478-3E37-4A9D-AF1C-B845730A7337}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>PassThruJ2534</RootNamespace>
<AssemblyName>PassThruDiagnostics</AssemblyName>
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ApplicationManifest>app.manifest</ApplicationManifest>
<StartupObject>PassThruJ2534.Program</StartupObject>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="J2534-Sharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\J2534-Sharp.1.0.0-CI00036\lib\net48\J2534-Sharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Compile Include="lib\Decoder\VIN_DECODER.cs" />
<Compile Include="lib\Interface\J2534.cs" />
<Compile Include="lib\Interface\J2534DeviceFinder.cs" />
<Compile Include="lib\Interface\J2534Devices.cs" />
<Compile Include="lib\Algorithms\SecurityAlgorithms.cs" />
<Compile Include="lib\Algorithms\SecurityKeys.cs" />
<Compile Include="lib\Services\CONRTOL_DTC_SETTING.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="lib\Services\DIAGNOSTIC_SESSION_CONTROL.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="lib\Services\ECU_RESET.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="lib\Services\NEGATIVE_RESPONSE_CODES.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="lib\Services\Protocol.cs" />
<Compile Include="lib\Services\SECURITY_ACCESS.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="lib\Services\TESTER_PRESENT.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="PassThru.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="PassThru.Designer.cs">
<DependentUpon>PassThru.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<DependentUpon>Settings.settings</DependentUpon>
<AutoGen>True</AutoGen>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="PassThru.resx">
<DependentUpon>PassThru.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resources" />
<EmbeddedResource Include="Properties\Resources.resx">
<DependentUpon>Resources.cs</DependentUpon>
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="app.manifest" />
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="lib\Media\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>