PageRenderTime 59ms CodeModel.GetById 32ms RepoModel.GetById 1ms app.codeStats 0ms

/GenericStack/GenericStack.csproj

https://bitbucket.org/prashain/c-code-snippets
MSBuild | 54 lines | 54 code | 0 blank | 0 comment | 0 complexity | f3a2b015638e40bb2432dff6e66d27a1 MD5 | raw file
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{14C53EE8-1872-47B8-A75C-1C9FAB199E7A}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>GenericStack</RootNamespace>
  11. <AssemblyName>GenericStack</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>True</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>False</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>False</ConsolePause>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>none</DebugType>
  25. <Optimize>False</Optimize>
  26. <OutputPath>bin\Release</OutputPath>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <ConsolePause>False</ConsolePause>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Reference Include="FluentAssertions">
  33. <HintPath>..\packages\FluentAssertions.2.0.0.1\lib\net40\FluentAssertions.dll</HintPath>
  34. </Reference>
  35. <Reference Include="nunit.framework">
  36. <HintPath>..\packages\NUnit.2.6.2\lib\nunit.framework.dll</HintPath>
  37. </Reference>
  38. <Reference Include="System" />
  39. <Reference Include="System.Xml" />
  40. <Reference Include="System.Xml.Linq" />
  41. <Reference Include="TechTalk.SpecFlow">
  42. <HintPath>..\packages\SpecFlow.1.9.0\lib\net35\TechTalk.SpecFlow.dll</HintPath>
  43. </Reference>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="AssemblyInfo.cs" />
  47. <Compile Include="Stack.cs" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <None Include="App.config" />
  51. <None Include="packages.config" />
  52. </ItemGroup>
  53. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  54. </Project>