forked from gradientspace/gsSlicer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgsSlicer.csproj
More file actions
113 lines (113 loc) · 5.35 KB
/
gsSlicer.csproj
File metadata and controls
113 lines (113 loc) · 5.35 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
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" 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)' == '' ">AnyCPU</Platform>
<ProjectGuid>{6C2E415E-37D9-4C5A-8FD5-60B0133872CF}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>gs</RootNamespace>
<AssemblyName>gsSlicer</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</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>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="compilers\ThreeAxisMillingCompiler.cs" />
<Compile Include="generators\PrintMeshAssembly.cs" />
<Compile Include="slicing\BaseSlicer.cs" />
<Compile Include="slicing\MeshPlanarMillSlicer.cs" />
<Compile Include="sls\GenericPathsAssembler.cs" />
<Compile Include="sls\GenericSLSPrintGenerator.cs" />
<Compile Include="sls\SLSCompiler.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="tests\CalibrationModelGenerator.cs" />
<Compile Include="toolpathing\GroupScheduler2d.cs" />
<Compile Include="toolpathing\LayerShellSelector.cs" />
<Compile Include="toolpathing\PathPostProcessor.cs" />
<Compile Include="toolpathing\SortingScheduler2d.cs" />
<Compile Include="toolpathing\SparseLinesFillPolygon.cs" />
<Compile Include="toolpathing\SupportPostProcessors.cs" />
<Compile Include="toolpathing\TiledFillPolygon.cs" />
<Compile Include="utility\CalculatePrintTime.cs" />
<Compile Include="utility\GCodeToTubeMeshes.cs" />
<Compile Include="utility\GCodeToToolpaths.cs" />
<Compile Include="tests\CalculateExtrusion.cs" />
<Compile Include="utility\LayersDetector.cs" />
<Compile Include="slicing\PlanarSlice.cs" />
<Compile Include="slicing\PlanarSliceStack.cs" />
<Compile Include="slicing\MeshPlanarSlicer.cs" />
<Compile Include="compilers\SingleMaterialFFFCompiler.cs" />
<Compile Include="generators\SingleMaterialFFFPrintGenerator.cs" />
<Compile Include="generators\ThreeAxisPrintGenerator.cs" />
<Compile Include="toolpaths\FillCurveSet2d.cs" />
<Compile Include="toolpaths\LinearToolpath3.cs" />
<Compile Include="toolpaths\ToolpathInterfaces.cs" />
<Compile Include="toolpaths\ToolpathSet.cs" />
<Compile Include="toolpaths\ToolpathSetBuilder.cs" />
<Compile Include="toolpaths\ToolpathUtil.cs" />
<Compile Include="toolpathing\RasterFillPolygon.cs" />
<Compile Include="toolpathing\IFillPolygon.cs" />
<Compile Include="toolpathing\FillPathScheduler2d.cs" />
<Compile Include="toolpathing\ShellsFillPolygon.cs" />
<Compile Include="toolpathing\ParallelLinesFillPolygon.cs" />
<Compile Include="sls\SLSPrintGenerator.cs" />
<Compile Include="utility\PathOverlapRepair.cs" />
<Compile Include="toolpaths\FillElements2d.cs" />
<Compile Include="utility\TemporalPathHash.cs" />
<Compile Include="utility\TopoOffset2d.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\geometry3Sharp\geometry3Sharp.csproj">
<Project>{0c518dda-28fe-44ca-9ab0-f9773974f13a}</Project>
<Name>geometry3Sharp</Name>
</ProjectReference>
<ProjectReference Include="..\gsGCode\gsGCode.csproj">
<Project>{25DE77C9-14A4-4562-9A24-0BF1E612D9A9}</Project>
<Name>gsGCode</Name>
</ProjectReference>
<ProjectReference Include="thirdparty\clipper_library\clipper_library.csproj">
<Project>{9B062971-A88E-4A3D-B3C9-12B78D15FA66}</Project>
<Name>clipper_library</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- 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>