InstallUtil.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <ProjectGuid>{346A118C-930C-4D97-97A5-195DCA0F003A}</ProjectGuid>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  7. <OutputType>Exe</OutputType>
  8. <LangVersion>8.0</LangVersion>
  9. <AssemblyName>InstallUtil</AssemblyName>
  10. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  11. <WarningLevel>4</WarningLevel>
  12. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Platform)' == 'x86' ">
  15. <PlatformTarget>x86</PlatformTarget>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  18. <OutputPath>bin\Debug\</OutputPath>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  24. <OutputPath>bin\Release\</OutputPath>
  25. <DebugSymbols>true</DebugSymbols>
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <Reference Include="System">
  31. <HintPath>C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll</HintPath>
  32. </Reference>
  33. <Reference Include="System.Configuration.Install">
  34. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Configuration.Install\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll</HintPath>
  35. </Reference>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Compile Include="AssemblyRef.cs" />
  39. <Compile Include="CommonResStrings.cs" />
  40. <Compile Include="FXAssembly.cs" />
  41. <Compile Include="Properties\AssemblyInfo.cs" />
  42. <Compile Include="System.Configuration.InstallUtilResources\Res.cs" />
  43. <Compile Include="System.Configuration.InstallUtilResources\ResCategoryAttribute.cs" />
  44. <Compile Include="System.Configuration.InstallUtilResources\ResDescriptionAttribute.cs" />
  45. <Compile Include="System.Configuration\InstallUtil.cs" />
  46. <Compile Include="ThisAssembly.cs" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <EmbeddedResource Include="CommonResStrings.resx" />
  50. <EmbeddedResource Include="InstallUtil.resx" />
  51. </ItemGroup>
  52. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  53. </Project>