Resources.csproj 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.50727</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{77EC70E4-F69F-4929-AA4B-3CA90D467F7D}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Resources</RootNamespace>
  12. <AssemblyName>Resources</AssemblyName>
  13. <StartupObject>
  14. </StartupObject>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  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. <DebugType>pdbonly</DebugType>
  27. <Optimize>false</Optimize>
  28. <OutputPath>..\bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  34. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  35. Other similar extension points exist, see Microsoft.Common.targets.
  36. <Target Name="BeforeBuild">
  37. </Target>
  38. <Target Name="AfterBuild">
  39. </Target>
  40. -->
  41. <ItemGroup>
  42. <Compile Include="AssemblyInfo.cs" />
  43. <Compile Include="DefaultResourceManager.cs" />
  44. <Compile Include="ResourceManager.cs" />
  45. </ItemGroup>
  46. </Project>