RESTClient.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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>{2933C213-1BAF-433E-B85B-0506760AAEFD}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>RESTClient</RootNamespace>
  10. <AssemblyName>RESTClient</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <WarningLevel>4</WarningLevel>
  15. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  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. <Reference Include="System" />
  38. <Reference Include="System.Data" />
  39. <Reference Include="System.Xml" />
  40. <Reference Include="Microsoft.CSharp" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="System.Xml.Linq" />
  43. <Reference Include="System.Data.DataSetExtensions" />
  44. <Reference Include="System.Net.Http" />
  45. <Reference Include="System.Xaml">
  46. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  47. </Reference>
  48. <Reference Include="WindowsBase" />
  49. <Reference Include="PresentationCore" />
  50. <Reference Include="PresentationFramework" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <ApplicationDefinition Include="App.xaml">
  54. <Generator>MSBuild:Compile</Generator>
  55. <SubType>Designer</SubType>
  56. </ApplicationDefinition>
  57. <Compile Include="Model\Request.cs" />
  58. <Compile Include="Utils\RequestManager.cs" />
  59. <Compile Include="Views\AboutMe.xaml.cs">
  60. <DependentUpon>AboutMe.xaml</DependentUpon>
  61. </Compile>
  62. <Page Include="MainWindow.xaml">
  63. <Generator>MSBuild:Compile</Generator>
  64. <SubType>Designer</SubType>
  65. </Page>
  66. <Compile Include="App.xaml.cs">
  67. <DependentUpon>App.xaml</DependentUpon>
  68. <SubType>Code</SubType>
  69. </Compile>
  70. <Compile Include="MainWindow.xaml.cs">
  71. <DependentUpon>MainWindow.xaml</DependentUpon>
  72. <SubType>Code</SubType>
  73. </Compile>
  74. <Page Include="Views\AboutMe.xaml">
  75. <SubType>Designer</SubType>
  76. <Generator>MSBuild:Compile</Generator>
  77. </Page>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Compile Include="Properties\AssemblyInfo.cs">
  81. <SubType>Code</SubType>
  82. </Compile>
  83. <Compile Include="Properties\Resources.Designer.cs">
  84. <AutoGen>True</AutoGen>
  85. <DesignTime>True</DesignTime>
  86. <DependentUpon>Resources.resx</DependentUpon>
  87. </Compile>
  88. <Compile Include="Properties\Settings.Designer.cs">
  89. <AutoGen>True</AutoGen>
  90. <DependentUpon>Settings.settings</DependentUpon>
  91. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  92. </Compile>
  93. <EmbeddedResource Include="Properties\Resources.resx">
  94. <Generator>ResXFileCodeGenerator</Generator>
  95. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  96. </EmbeddedResource>
  97. <None Include="Properties\Settings.settings">
  98. <Generator>SettingsSingleFileGenerator</Generator>
  99. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  100. </None>
  101. </ItemGroup>
  102. <ItemGroup>
  103. <None Include="App.config" />
  104. </ItemGroup>
  105. <ItemGroup />
  106. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  107. </Project>