Skip to content
Snippets Groups Projects
Select Git revision
  • fbf343417c8e46f4245d795d889bab0cc4cbb261
  • main default protected
  • ghebremm-main-patch-40518
3 results

ConsoleApplication1.csproj

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ConsoleApplication1.csproj 3.70 KiB
    <?xml version="1.0" encoding="utf-8"?>
    <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
        <Import Project="..\packages\NUnit.3.13.3\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.13.3\build\NUnit.props')" />
        <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
        <PropertyGroup>
            <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
            <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
            <ProjectGuid>{F452348B-AED0-495C-9FED-657078DBB420}</ProjectGuid>
            <OutputType>Exe</OutputType>
            <AppDesignerFolder>Properties</AppDesignerFolder>
            <RootNamespace>ConsoleApplication1</RootNamespace>
            <AssemblyName>ConsoleApplication1</AssemblyName>
            <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
            <FileAlignment>512</FileAlignment>
            <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
        </PropertyGroup>
        <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
            <PlatformTarget>AnyCPU</PlatformTarget>
            <DebugSymbols>true</DebugSymbols>
            <DebugType>full</DebugType>
            <Optimize>false</Optimize>
            <OutputPath>bin\Debug\</OutputPath>
            <DefineConstants>DEBUG;TRACE</DefineConstants>
            <ErrorReport>prompt</ErrorReport>
            <WarningLevel>4</WarningLevel>
        </PropertyGroup>
        <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
            <PlatformTarget>AnyCPU</PlatformTarget>
            <DebugType>pdbonly</DebugType>
            <Optimize>true</Optimize>
            <OutputPath>bin\Release\</OutputPath>
            <DefineConstants>TRACE</DefineConstants>
            <ErrorReport>prompt</ErrorReport>
            <WarningLevel>4</WarningLevel>
        </PropertyGroup>
        <ItemGroup>
            <Reference Include="nunit.framework, Version=3.13.3.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
              <HintPath>..\packages\NUnit.3.13.3\lib\net35\nunit.framework.dll</HintPath>
            </Reference>
            <Reference Include="System" />
            <Reference Include="System.Core" />
            <Reference Include="System.Data" />
            <Reference Include="System.Xml" />
        </ItemGroup>
        <ItemGroup>
            <Compile Include="Buffer.cs" />
            <Compile Include="Car.cs" />
            <Compile Include="Consumer.cs" />
            <Compile Include="Producer.cs" />
            <Compile Include="Program.cs" />
            <Compile Include="Properties\AssemblyInfo.cs" />
            <Compile Include="Test\BufferTest.cs" />
        </ItemGroup>
        <ItemGroup>
          <None Include="packages.config" />
        </ItemGroup>
        <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
        <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
          <PropertyGroup>
            <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}.</ErrorText>
          </PropertyGroup>
          <Error Condition="!Exists('..\packages\NUnit.3.13.3\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.13.3\build\NUnit.props'))" />
        </Target>
        <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
             Other similar extension points exist, see Microsoft.Common.targets.
        <Target Name="BeforeBuild">
        </Target>
        <Target Name="AfterBuild">
        </Target>
        -->
    
    </Project>