Added netDxf submodule

This commit is contained in:
AJ
2019-02-22 08:31:10 -05:00
parent 1ee46a6174
commit e3b3f2ee8b
7 changed files with 23 additions and 6 deletions

3
.gitignore vendored
View File

@@ -122,6 +122,9 @@ DocProject/Help/html
# Click-Once directory
publish/
# Visual studio settings directory
.vs/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "netDxf"]
path = netDxf
url = https://github.com/haplokuon/netDxf.git

View File

@@ -27,7 +27,7 @@ namespace PepLib.Dxf
rapidLayer = new Layer("Rapid");
rapidLayer.Color = AciColor.Blue;
rapidLayer.LineType = LineType.Dashed;
rapidLayer.Linetype = Linetype.Dashed;
plateLayer = new Layer("Plate");
plateLayer.Color = AciColor.Cyan;

View File

@@ -33,9 +33,6 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="netDxf">
<HintPath>..\..\lib\netDxf.dll</HintPath>
</Reference>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
@@ -45,6 +42,10 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\netDxf\netDxf\netDxf.csproj">
<Project>{785380e0-ceb9-4c34-82e5-60d0e33e848e}</Project>
<Name>netDxf</Name>
</ProjectReference>
<ProjectReference Include="..\PepLib\PepLib.csproj">
<Project>{22360453-B878-49FA-A5DC-0D9C577DE902}</Project>
<Name>PepLib</Name>

Binary file not shown.

View File

@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 15
VisualStudioVersion = 15.0.28307.329
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PepLib", "PepLib\PepLib.csproj", "{22360453-B878-49FA-A5DC-0D9C577DE902}"
EndProject
@@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PepLib.Dxf", "PepLib.Dxf\Pe
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PepLib.UI", "PepLib.UI\PepLib.UI.csproj", "{7A7D21F5-8EF1-4A63-A65B-86D10BEDFC2A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "netDxf", "netDxf\netDxf\netDxf.csproj", "{785380E0-CEB9-4C34-82E5-60D0E33E848E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -27,8 +29,15 @@ Global
{7A7D21F5-8EF1-4A63-A65B-86D10BEDFC2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7A7D21F5-8EF1-4A63-A65B-86D10BEDFC2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7A7D21F5-8EF1-4A63-A65B-86D10BEDFC2A}.Release|Any CPU.Build.0 = Release|Any CPU
{785380E0-CEB9-4C34-82E5-60D0E33E848E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{785380E0-CEB9-4C34-82E5-60D0E33E848E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{785380E0-CEB9-4C34-82E5-60D0E33E848E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{785380E0-CEB9-4C34-82E5-60D0E33E848E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F01261B9-29C3-4237-BE68-03EF8DCEC2B2}
EndGlobalSection
EndGlobal

1
netDxf Submodule

Submodule netDxf added at 9ec082c92f