forked from beyerch/J2534DotNet
-
Notifications
You must be signed in to change notification settings - Fork 15
/
J2534-Sharp.csproj
120 lines (120 loc) · 5.13 KB
/
J2534-Sharp.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<BaseIntermediateOutputPath>$(SolutionDir)\obj\</BaseIntermediateOutputPath>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{D99E0DE7-2F06-41E3-B33E-687E1B425A7F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SAE.J2534</RootNamespace>
<AssemblyName>J2534-Sharp</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>$(SolutionDir)\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>$(SolutionDir)\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>..\bin\Release\J2534-Sharp.XML</DocumentationFile>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="APIFactory.cs" />
<Compile Include="Common\BoolInterlock.cs" />
<Compile Include="Common\EnumHelper.cs" />
<Compile Include="Common\UnmanagedDisposable.cs" />
<Compile Include="Common\ManagedDisposable.cs" />
<Compile Include="DataClasses\GetMessageResults.cs" />
<Compile Include="DataClasses\GetNextCarDAQResults.cs" />
<Compile Include="DataClasses\API_Signature.cs" />
<Compile Include="DataClasses\HeapIntPtr.cs" />
<Compile Include="DataClasses\HeapSByteArray.cs" />
<Compile Include="DataClasses\HeapSConfigArray.cs" />
<Compile Include="DataClasses\HeapSParamArray.cs" />
<Compile Include="DataClasses\HeapString.cs" />
<Compile Include="DataClasses\HeapStructArray.cs" />
<Compile Include="DataClasses\SConfig.cs" />
<Compile Include="DataClasses\SParam.cs" />
<Compile Include="Definitions\Const.cs" />
<Compile Include="Definitions\Baud.cs" />
<Compile Include="Definitions\ConnectFlag.cs" />
<Compile Include="Definitions\DeviceInfo.cs" />
<Compile Include="Definitions\DeviceParameter.cs" />
<Compile Include="Definitions\ProtocolInfo.cs" />
<Compile Include="Definitions\ResultCode.cs" />
<Compile Include="Definitions\Filter.cs" />
<Compile Include="Definitions\IOCTL.cs" />
<Compile Include="Definitions\Parameter.cs" />
<Compile Include="Definitions\Pin.cs" />
<Compile Include="Definitions\Protocol.cs" />
<Compile Include="Definitions\RxFlag.cs" />
<Compile Include="Definitions\TxFlag.cs" />
<Compile Include="Definitions\SAE_API.cs" />
<Compile Include="Definitions\UserFilterType.cs" />
<Compile Include="API_Delegates.cs" />
<Compile Include="API_GetDeviceList.cs" />
<Compile Include="API_Prototypes.cs" />
<Compile Include="DataClasses\HeapInt.cs" />
<Compile Include="DataClasses\HeapMessage.cs" />
<Compile Include="DataClasses\HeapMessageArray.cs" />
<Compile Include="DataClasses\Message.cs" />
<Compile Include="DataClasses\MessageFilter.cs" />
<Compile Include="DataClasses\PeriodicMessage.cs" />
<Compile Include="DataClasses\APIInfo.cs" />
<Compile Include="DataClasses\J2534Exception.cs" />
<Compile Include="API_v202Shim.cs" />
<Compile Include="Device.cs" />
<Compile Include="Channel.cs" />
<Compile Include="Definitions\DrewTech_API.cs" />
<Compile Include="API.cs" />
<Compile Include="NativeMethods.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
<!-- 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>