MovieBarcodeGenerator.csproj 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" 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>{97B87120-43C1-4D85-8D95-FCF56B5FA0F8}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MovieBarcodeGenerator</RootNamespace>
  11. <AssemblyName>MovieBarcodeGenerator</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  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. <ItemGroup>
  35. <Reference Include="log4net, Version=1.2.14.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  36. <HintPath>..\packages\log4net.2.0.4\lib\net45-full\log4net.dll</HintPath>
  37. <Private>True</Private>
  38. </Reference>
  39. <Reference Include="NDesk.Options, Version=0.2.1.0, Culture=neutral, processorArchitecture=MSIL">
  40. <HintPath>..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll</HintPath>
  41. <Private>True</Private>
  42. </Reference>
  43. <Reference Include="System" />
  44. <Reference Include="System.Configuration" />
  45. <Reference Include="System.Core" />
  46. <Reference Include="System.Xml.Linq" />
  47. <Reference Include="System.Data.DataSetExtensions" />
  48. <Reference Include="Microsoft.CSharp" />
  49. <Reference Include="System.Data" />
  50. <Reference Include="System.Xml" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="BarcodeGenerator.cs" />
  54. <Compile Include="Program.cs" />
  55. <Compile Include="Properties\AssemblyInfo.cs" />
  56. <Compile Include="SharpFF.cs" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <None Include="App.config">
  60. <SubType>Designer</SubType>
  61. </None>
  62. <None Include="packages.config" />
  63. </ItemGroup>
  64. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  65. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  66. Other similar extension points exist, see Microsoft.Common.targets.
  67. <Target Name="BeforeBuild">
  68. </Target>
  69. <Target Name="AfterBuild">
  70. </Target>
  71. -->
  72. </Project>