123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="15.0" 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>{A7F24E0A-8AAE-4484-A5EA-5B7235D095CE}</ProjectGuid>
- <OutputType>WinExe</OutputType>
- <RootNamespace>TestCad</RootNamespace>
- <AssemblyName>TestCad</AssemblyName>
- <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <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' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup>
- <StartupObject />
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="accoremgd">
- <HintPath>Dll\accoremgd.dll</HintPath>
- </Reference>
- <Reference Include="AcDbMgd">
- <HintPath>Dll\AcDbMgd.dll</HintPath>
- </Reference>
- <Reference Include="AcMgd">
- <HintPath>Dll\AcMgd.dll</HintPath>
- </Reference>
- <Reference Include="Autodesk.AutoCAD.Interop">
- <HintPath>Dll\Autodesk.AutoCAD.Interop.dll</HintPath>
- <EmbedInteropTypes>True</EmbedInteropTypes>
- </Reference>
- <Reference Include="Autodesk.AutoCAD.Interop.Common">
- <HintPath>Dll\Autodesk.AutoCAD.Interop.Common.dll</HintPath>
- <EmbedInteropTypes>True</EmbedInteropTypes>
- </Reference>
- <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
- <HintPath>packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
- </Reference>
- <Reference Include="SAGA.DotNetUtils">
- <HintPath>Dll\SAGA.DotNetUtils.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Windows.Forms" />
- <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="AutoCADConnector.cs" />
- <Compile Include="ConnectToAcad.cs" />
- <Compile Include="ExportUtils.cs" />
- <Compile Include="Model\BlockReference.cs" />
- <Compile Include="Model\CADObject.cs" />
- <Compile Include="Model\Arc.cs" />
- <Compile Include="Model\Document.cs" />
- <Compile Include="Model\DBText.cs" />
- <Compile Include="Model\Circle.cs" />
- <Compile Include="Model\Layer.cs" />
- <Compile Include="Model\Line.cs" />
- <Compile Include="Model\PolyLine.cs" />
- <Compile Include="Model\XYZ.cs" />
- <Compile Include="Program.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="WinMain.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="WinMain.Designer.cs">
- <DependentUpon>WinMain.cs</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <None Include="App.config" />
- <None Include="packages.config" />
- <None Include="README.md" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="WinMain.resx">
- <DependentUpon>WinMain.cs</DependentUpon>
- </EmbeddedResource>
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|