Lab18.csproj 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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)' == '' ">x86</Platform>
  6. <ProjectGuid>{2E68FC5F-19D6-4A85-B7E3-0455CE576063}</ProjectGuid>
  7. <OutputType>Exe</OutputType>
  8. <RootNamespace>Lab18</RootNamespace>
  9. <AssemblyName>Lab18</AssemblyName>
  10. <TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  13. <DebugSymbols>true</DebugSymbols>
  14. <DebugType>full</DebugType>
  15. <Optimize>false</Optimize>
  16. <OutputPath>bin\Debug</OutputPath>
  17. <DefineConstants>DEBUG;</DefineConstants>
  18. <ErrorReport>prompt</ErrorReport>
  19. <WarningLevel>4</WarningLevel>
  20. <ExternalConsole>true</ExternalConsole>
  21. <PlatformTarget>x86</PlatformTarget>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release</OutputPath>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <ExternalConsole>true</ExternalConsole>
  29. <PlatformTarget>x86</PlatformTarget>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Reference Include="System" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Compile Include="Program.cs" />
  36. <Compile Include="Properties\AssemblyInfo.cs" />
  37. <Compile Include="Models\Supplier.cs" />
  38. <Compile Include="Models\Goods.cs" />
  39. <Compile Include="Models\GSLink.cs" />
  40. <Compile Include="Models\GSRecords.cs" />
  41. <Compile Include="Recorder.cs" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Folder Include="Models\" />
  45. </ItemGroup>
  46. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  47. </Project>