forked from dsuarezv/Netduino-gcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgcodeparser-netduino.csproj
More file actions
76 lines (76 loc) · 3.38 KB
/
Copy pathgcodeparser-netduino.csproj
File metadata and controls
76 lines (76 loc) · 3.38 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AssemblyName>gcodeparser-netduino</AssemblyName>
<OutputType>Library</OutputType>
<RootNamespace>gcodeparser</RootNamespace>
<ProjectTypeGuids>{b69e3092-b931-443c-abe7-7e7b65f2a37f};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{01CE635C-A706-46FB-8546-445AB8E41A25}</ProjectGuid>
<TargetFrameworkVersion>v4.1</TargetFrameworkVersion>
<NetMfTargetsBaseDir Condition="'$(NetMfTargetsBaseDir)'==''">$(MSBuildExtensionsPath32)\Microsoft\.NET Micro Framework\</NetMfTargetsBaseDir>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release-netduino\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<Import Project="$(NetMfTargetsBaseDir)$(TargetFrameworkVersion)\CSharp.Targets" />
<ItemGroup>
<Reference Include="Microsoft.SPOT.Hardware">
<HintPath>..\..\..\DotNet MicroFramework 4.1\v4.1\Assemblies\le\Microsoft.SPOT.Hardware.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.Native">
<HintPath>..\..\..\DotNet MicroFramework 4.1\v4.1\Assemblies\le\Microsoft.SPOT.Native.dll</HintPath>
</Reference>
<Reference Include="SecretLabs.NETMF.Hardware">
<HintPath>..\..\..\Netduino SDK\Assemblies\v4.1\SecretLabs.NETMF.Hardware.dll</HintPath>
</Reference>
<Reference Include="SecretLabs.NETMF.Hardware.Netduino">
<HintPath>..\..\..\Netduino SDK\Assemblies\v4.1\SecretLabs.NETMF.Hardware.Netduino.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="ArcInterpolation.cs" />
<Compile Include="Hal\Device.cs" />
<Compile Include="Hal\DeviceFactory.cs" />
<Compile Include="Hal\Math2.cs" />
<Compile Include="Machine.cs" />
<Compile Include="Parser\ManualModeParser.cs" />
<Compile Include="Parser\BaseCommand.cs" />
<Compile Include="Parser\CommandAxis.cs" />
<Compile Include="Parser\CommandD.cs" />
<Compile Include="Parser\CommandF.cs" />
<Compile Include="Parser\CommandG.cs" />
<Compile Include="Parser\CommandM.cs" />
<Compile Include="Parser\CommandS.cs" />
<Compile Include="Parser\CommandT.cs" />
<Compile Include="Parser\GcodeParser.cs" />
<Compile Include="Logger.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup />
<!-- 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>