MSBuild.csproj 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{9B1E1660-6DB8-4F42-AEBC-CCBF6E246138}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>MSBuild</RootNamespace>
  10. <AssemblyName>MSBuild</AssemblyName>
  11. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Compile Include="AnalysisModel.cs" />
  38. <Compile Include="ComHelper.cs" />
  39. <Compile Include="ConfigureModel.cs" />
  40. <Compile Include="FormMain.cs">
  41. <SubType>Form</SubType>
  42. </Compile>
  43. <Compile Include="FormMain.Designer.cs">
  44. <DependentUpon>FormMain.cs</DependentUpon>
  45. </Compile>
  46. <Compile Include="Program.cs" />
  47. <Compile Include="Properties\AssemblyInfo.cs" />
  48. <Compile Include="ItemModel.cs" />
  49. <EmbeddedResource Include="FormMain.resx">
  50. <DependentUpon>FormMain.cs</DependentUpon>
  51. </EmbeddedResource>
  52. <EmbeddedResource Include="Properties\Resources.resx">
  53. <Generator>ResXFileCodeGenerator</Generator>
  54. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  55. <SubType>Designer</SubType>
  56. </EmbeddedResource>
  57. <Compile Include="Properties\Resources.Designer.cs">
  58. <AutoGen>True</AutoGen>
  59. <DependentUpon>Resources.resx</DependentUpon>
  60. <DesignTime>True</DesignTime>
  61. </Compile>
  62. <None Include="packages.config" />
  63. <None Include="Properties\Settings.settings">
  64. <Generator>SettingsSingleFileGenerator</Generator>
  65. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  66. </None>
  67. <Compile Include="Properties\Settings.Designer.cs">
  68. <AutoGen>True</AutoGen>
  69. <DependentUpon>Settings.settings</DependentUpon>
  70. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  71. </Compile>
  72. </ItemGroup>
  73. <ItemGroup>
  74. <None Include="App.config" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Reference Include="Microsoft.Build, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  78. <HintPath>packages\Microsoft.Build.14.3.0\lib\net45\Microsoft.Build.dll</HintPath>
  79. </Reference>
  80. <Reference Include="Microsoft.Build.Framework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  81. <HintPath>packages\Microsoft.Build.Framework.14.3.0\lib\net45\Microsoft.Build.Framework.dll</HintPath>
  82. </Reference>
  83. <Reference Include="Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  84. <HintPath>packages\Microsoft.Build.Tasks.Core.14.3.0\lib\net45\Microsoft.Build.Tasks.Core.dll</HintPath>
  85. </Reference>
  86. <Reference Include="Microsoft.Build.Utilities.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  87. <HintPath>packages\Microsoft.Build.Utilities.Core.14.3.0\lib\net45\Microsoft.Build.Utilities.Core.dll</HintPath>
  88. </Reference>
  89. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  90. <HintPath>packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  91. </Reference>
  92. <Reference Include="System" />
  93. <Reference Include="System.Collections.Immutable, Version=1.2.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  94. <HintPath>packages\System.Collections.Immutable.1.7.1\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
  95. </Reference>
  96. <Reference Include="System.ComponentModel.Composition" />
  97. <Reference Include="System.Data" />
  98. <Reference Include="System.Data.DataSetExtensions" />
  99. <Reference Include="System.Drawing" />
  100. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  101. <HintPath>packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  102. </Reference>
  103. <Reference Include="System.Threading.Tasks.Dataflow, Version=4.6.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  104. <HintPath>packages\System.Threading.Tasks.Dataflow.4.11.1\lib\portable-net45+win8+wpa81\System.Threading.Tasks.Dataflow.dll</HintPath>
  105. </Reference>
  106. <Reference Include="System.Windows.Forms" />
  107. <Reference Include="System.Xml" />
  108. <Reference Include="System.Xml.Linq" />
  109. </ItemGroup>
  110. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  111. </Project>