SAPTest.csproj 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>{44107CFB-7033-4545-BF55-C3996C90D39F}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>SAPTest</RootNamespace>
  10. <AssemblyName>SAPTest</AssemblyName>
  11. <TargetFrameworkVersion>v4.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. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  35. <DebugSymbols>true</DebugSymbols>
  36. <OutputPath>bin\x86\Debug\</OutputPath>
  37. <DefineConstants>DEBUG;TRACE</DefineConstants>
  38. <DebugType>full</DebugType>
  39. <PlatformTarget>x86</PlatformTarget>
  40. <ErrorReport>prompt</ErrorReport>
  41. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  44. <OutputPath>bin\x86\Release\</OutputPath>
  45. <DefineConstants>TRACE</DefineConstants>
  46. <Optimize>true</Optimize>
  47. <DebugType>pdbonly</DebugType>
  48. <PlatformTarget>x86</PlatformTarget>
  49. <ErrorReport>prompt</ErrorReport>
  50. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  51. </PropertyGroup>
  52. <ItemGroup>
  53. <Reference Include="Oracle.ManagedDataAccess">
  54. <HintPath>..\..\DLL\Oracle.ManagedDataAccess.dll</HintPath>
  55. </Reference>
  56. <Reference Include="System" />
  57. <Reference Include="System.Core" />
  58. <Reference Include="System.Xml.Linq" />
  59. <Reference Include="System.Data.DataSetExtensions" />
  60. <Reference Include="Microsoft.CSharp" />
  61. <Reference Include="System.Data" />
  62. <Reference Include="System.Deployment" />
  63. <Reference Include="System.Drawing" />
  64. <Reference Include="System.Windows.Forms" />
  65. <Reference Include="System.Xml" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Form1.cs">
  69. <SubType>Form</SubType>
  70. </Compile>
  71. <Compile Include="Form1.Designer.cs">
  72. <DependentUpon>Form1.cs</DependentUpon>
  73. </Compile>
  74. <Compile Include="Program.cs" />
  75. <Compile Include="Properties\AssemblyInfo.cs" />
  76. <EmbeddedResource Include="Form1.resx">
  77. <DependentUpon>Form1.cs</DependentUpon>
  78. </EmbeddedResource>
  79. <None Include="App.config">
  80. <SubType>Designer</SubType>
  81. </None>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <ProjectReference Include="..\..\DK.Basics\DataAccess\DataAccess.csproj">
  85. <Project>{D0492C0B-7B65-4D8F-8EA5-BC0570E19050}</Project>
  86. <Name>DataAccess</Name>
  87. </ProjectReference>
  88. <ProjectReference Include="..\..\WCF.Service\WCF.DataModels\WCF.DataModels.csproj">
  89. <Project>{4C4BFBDC-125C-488A-8B35-5A0637478C66}</Project>
  90. <Name>WCF.DataModels</Name>
  91. </ProjectReference>
  92. <ProjectReference Include="..\SAPDataService\SAPHegiiDataService.csproj">
  93. <Project>{41d66009-a06f-4632-869c-110ab1c3b969}</Project>
  94. <Name>SAPHegiiDataService</Name>
  95. </ProjectReference>
  96. </ItemGroup>
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. </Project>