-
Notifications
You must be signed in to change notification settings - Fork 3
/
ftdi-test.csproj
44 lines (44 loc) · 1.74 KB
/
ftdi-test.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
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{1DF42224-FE39-4238-B773-18B774E35A25}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputType>Exe</OutputType>
<AssemblyName>ftdi-test</AssemblyName>
<OutputPath>./bin/Debug</OutputPath>
<DebugSymbols>True</DebugSymbols>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>
</DefineConstants>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputType>Exe</OutputType>
<AssemblyName>ftdi-test</AssemblyName>
<OutputPath>./bin/Release</OutputPath>
<DebugSymbols>False</DebugSymbols>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>
</DefineConstants>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="./ftdi-cil.csproj">
<Project>{C495D631-4E51-4D41-859F-B7CC882408FA}</Project>
<Name>ftdi-cil</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="./ftdi-test.cs" />
</ItemGroup>
</Project>