ConsoleApp2.csproj 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>{0897D16E-10CA-4B0F-AF48-30513B6B2DF0}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>ConsoleApp2</RootNamespace>
  10. <AssemblyName>ConsoleApp2</AssemblyName>
  11. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <Deterministic>true</Deterministic>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  36. <HintPath>packages\Newtonsoft.Json.9.0.1\lib\net20\Newtonsoft.Json.dll</HintPath>
  37. </Reference>
  38. <Reference Include="System" />
  39. <Reference Include="System.Data" />
  40. <Reference Include="System.Drawing" />
  41. <Reference Include="System.Windows.Forms" />
  42. <Reference Include="System.Xml" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="form1.cs">
  46. <SubType>Form</SubType>
  47. </Compile>
  48. <Compile Include="form1.Designer.cs">
  49. <DependentUpon>form1.cs</DependentUpon>
  50. </Compile>
  51. <Compile Include="form2.cs">
  52. <SubType>Form</SubType>
  53. </Compile>
  54. <Compile Include="form2.Designer.cs">
  55. <DependentUpon>form2.cs</DependentUpon>
  56. </Compile>
  57. <Compile Include="Program.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <None Include="packages.config" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <EmbeddedResource Include="form1.resx">
  65. <DependentUpon>form1.cs</DependentUpon>
  66. </EmbeddedResource>
  67. <EmbeddedResource Include="form2.resx">
  68. <DependentUpon>form2.cs</DependentUpon>
  69. </EmbeddedResource>
  70. </ItemGroup>
  71. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  72. </Project>