1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{346A118C-930C-4D97-97A5-195DCA0F003A}</ProjectGuid>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <OutputType>Exe</OutputType>
- <LangVersion>8.0</LangVersion>
- <AssemblyName>InstallUtil</AssemblyName>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- <WarningLevel>4</WarningLevel>
- <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'x86' ">
- <PlatformTarget>x86</PlatformTarget>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>bin\Debug\</OutputPath>
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <OutputPath>bin\Release\</OutputPath>
- <DebugSymbols>true</DebugSymbols>
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System">
- <HintPath>C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll</HintPath>
- </Reference>
- <Reference Include="System.Configuration.Install">
- <HintPath>C:\Windows\assembly\GAC_MSIL\System.Configuration.Install\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="AssemblyRef.cs" />
- <Compile Include="CommonResStrings.cs" />
- <Compile Include="FXAssembly.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="System.Configuration.InstallUtilResources\Res.cs" />
- <Compile Include="System.Configuration.InstallUtilResources\ResCategoryAttribute.cs" />
- <Compile Include="System.Configuration.InstallUtilResources\ResDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\InstallUtil.cs" />
- <Compile Include="ThisAssembly.cs" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="CommonResStrings.resx" />
- <EmbeddedResource Include="InstallUtil.resx" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|