Skip to content

Commit 7bfd278

Browse files
Moving source-related content into /Source.
1 parent c3d6c96 commit 7bfd278

15 files changed

Lines changed: 14 additions & 9 deletions

File tree

13.5 KB
Binary file not shown.
70 KB
Binary file not shown.

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
An STL Reading and Writing Library for .NET
2-
-
1+
#An STL Reading and Writing Library for .NET
32
This library facilitates the reading and writing of Stereo Lithograph (STL) files. It is written in C# 4 and was created with Visual Studio 2012.
43

5-
Features
6-
-
4+
##Features
75
* Reads ASCII STL files.
86
* Reads binary STL files.
97
* Writes ASCII STL files.
108
* Writes binary STL files.
11-
* Provides an object-oriented mechanism by which to create STL files from scratch.
9+
* Provides an object-oriented mechanism by which to create STL files from scratch.
10+
11+
##Installation
12+
The latest release is [v1.0.0.0](https://github.com/QuantumConcepts/STLdotNET/releases/tag/1.0.0.0). You can download the source and build it yourself, download the binaries from the release, or install the NuGet package:
13+
14+
Install-Package QuantumConcepts.Formats.STL
File renamed without changes.
File renamed without changes.
File renamed without changes.

STL/STL.csproj renamed to Source/STL/STL.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<ItemGroup>
3636
<Reference Include="QuantumConcepts.Common, Version=1.0.1.0, Culture=neutral, PublicKeyToken=ab18da1c1d053b41, processorArchitecture=MSIL">
3737
<SpecificVersion>False</SpecificVersion>
38-
<HintPath>..\Components\QuantumConcepts.Common.dll</HintPath>
38+
<HintPath>..\..\Components\QuantumConcepts.Common.dll</HintPath>
3939
</Reference>
4040
<Reference Include="System" />
4141
<Reference Include="System.Core" />
@@ -52,6 +52,9 @@
5252
<Compile Include="STLDocument.cs" />
5353
<Compile Include="Vertex.cs" />
5454
</ItemGroup>
55+
<ItemGroup>
56+
<None Include="QuantumConcepts.Formats.STL.dll.nuspec" />
57+
</ItemGroup>
5558
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5659
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5760
Other similar extension points exist, see Microsoft.Common.targets.
File renamed without changes.

0 commit comments

Comments
 (0)