SketchAssistantWPF.csproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\packages\NUnit.3.11.0\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.11.0\build\NUnit.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{EE53AE79-2AA0-4F43-9638-1789B189D5C3}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>SketchAssistantWPF</RootNamespace>
  11. <AssemblyName>SketchAssistantWPF</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  17. <Deterministic>true</Deterministic>
  18. <NuGetPackageImportStamp>
  19. </NuGetPackageImportStamp>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <PlatformTarget>AnyCPU</PlatformTarget>
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>full</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <PlatformTarget>AnyCPU</PlatformTarget>
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="nunit.framework, Version=3.11.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
  42. <HintPath>..\packages\NUnit.3.11.0\lib\net45\nunit.framework.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System" />
  45. <Reference Include="System.Data" />
  46. <Reference Include="System.Drawing" />
  47. <Reference Include="System.Xml" />
  48. <Reference Include="Microsoft.CSharp" />
  49. <Reference Include="System.Core" />
  50. <Reference Include="System.Xml.Linq" />
  51. <Reference Include="System.Data.DataSetExtensions" />
  52. <Reference Include="System.Net.Http" />
  53. <Reference Include="System.Xaml">
  54. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  55. </Reference>
  56. <Reference Include="WindowsBase" />
  57. <Reference Include="PresentationCore" />
  58. <Reference Include="PresentationFramework" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <ApplicationDefinition Include="App.xaml">
  62. <Generator>MSBuild:Compile</Generator>
  63. <SubType>Designer</SubType>
  64. </ApplicationDefinition>
  65. <Compile Include="ActionHistory.cs" />
  66. <Compile Include="FileImporter.cs" />
  67. <Compile Include="FileImporterException.cs" />
  68. <Compile Include="GeometryCalculator.cs" />
  69. <Compile Include="ImageDimension.cs" />
  70. <Compile Include="SketchAction.cs" />
  71. <Page Include="MainWindow.xaml">
  72. <Generator>MSBuild:Compile</Generator>
  73. <SubType>Designer</SubType>
  74. </Page>
  75. <Compile Include="App.xaml.cs">
  76. <DependentUpon>App.xaml</DependentUpon>
  77. <SubType>Code</SubType>
  78. </Compile>
  79. <Compile Include="InternalLine.cs" />
  80. <Compile Include="MainWindow.xaml.cs">
  81. <DependentUpon>MainWindow.xaml</DependentUpon>
  82. <SubType>Code</SubType>
  83. </Compile>
  84. </ItemGroup>
  85. <ItemGroup>
  86. <Compile Include="MVP_Model.cs" />
  87. <Compile Include="MVP_Presenter.cs" />
  88. <Compile Include="MVP_View.cs" />
  89. <Compile Include="Properties\AssemblyInfo.cs">
  90. <SubType>Code</SubType>
  91. </Compile>
  92. <Compile Include="Properties\Resources.Designer.cs">
  93. <AutoGen>True</AutoGen>
  94. <DesignTime>True</DesignTime>
  95. <DependentUpon>Resources.resx</DependentUpon>
  96. </Compile>
  97. <Compile Include="Properties\Settings.Designer.cs">
  98. <AutoGen>True</AutoGen>
  99. <DependentUpon>Settings.settings</DependentUpon>
  100. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  101. </Compile>
  102. <EmbeddedResource Include="Properties\Resources.resx">
  103. <Generator>ResXFileCodeGenerator</Generator>
  104. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  105. </EmbeddedResource>
  106. <None Include="packages.config" />
  107. <None Include="Properties\Settings.settings">
  108. <Generator>SettingsSingleFileGenerator</Generator>
  109. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  110. </None>
  111. </ItemGroup>
  112. <ItemGroup>
  113. <None Include="App.config" />
  114. </ItemGroup>
  115. <ItemGroup />
  116. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  117. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  118. <PropertyGroup>
  119. <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  120. </PropertyGroup>
  121. <Error Condition="!Exists('..\packages\NUnit.3.11.0\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.11.0\build\NUnit.props'))" />
  122. </Target>
  123. </Project>