-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from gavardev/fix_project_with_duplicated_sect…
…ions Fixes problem with projects containing duplicated sections
- Loading branch information
Showing
4 changed files
with
115 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<RootNamespace>Test</RootNamespace> | ||
<AssemblyName>Test</AssemblyName> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{A518F172-99B1-4A83-8A40-D9EFBA0E4270}</ProjectGuid> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
<StartAction>Project</StartAction> | ||
<NoWin32Manifest>False</NoWin32Manifest> | ||
<BaseIntermediateOutputPath>.obj\Test</BaseIntermediateOutputPath> | ||
<IntermediateOutputPath>.obj\Test\$(Configuration) - $(Platform)\</IntermediateOutputPath> | ||
<OutputPath>.bin\$(Configuration)\Test\</OutputPath> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<UpdateEnabled>false</UpdateEnabled> | ||
<UpdateMode>Foreground</UpdateMode> | ||
<UpdateInterval>7</UpdateInterval> | ||
<UpdateIntervalUnits>Days</UpdateIntervalUnits> | ||
<UpdatePeriodically>false</UpdatePeriodically> | ||
<UpdateRequired>false</UpdateRequired> | ||
<MapFileExtensions>true</MapFileExtensions> | ||
<IsWebBootstrapper>false</IsWebBootstrapper> | ||
<UseApplicationTrust>false</UseApplicationTrust> | ||
<BootstrapperEnabled>true</BootstrapperEnabled> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<Optimize>False</Optimize> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>Full</DebugType> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<Optimize>True</Optimize> | ||
<DebugSymbols>false</DebugSymbols> | ||
<DebugType>None</DebugType> | ||
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' "> | ||
<RegisterForComInterop>False</RegisterForComInterop> | ||
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies> | ||
<BaseAddress>4194304</BaseAddress> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<FileAlignment>4096</FileAlignment> | ||
<Prefer32Bit>False</Prefer32Bit> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" /> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<PostBuildEvent>rem some post-build actions</PostBuildEvent> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<PostBuildEvent>rem some post-build actions</PostBuildEvent> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Platform)' == 'x86' "> | ||
<RegisterForComInterop>False</RegisterForComInterop> | ||
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies> | ||
<BaseAddress>4194304</BaseAddress> | ||
<PlatformTarget>x86</PlatformTarget> | ||
<FileAlignment>4096</FileAlignment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug' "> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release' "> | ||
<DefineConstants>TRACE;RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug2ndTest' "> | ||
<OutputPath>$(Configuration)\SecondTest\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug2ndTest' "> | ||
<Optimize>False</Optimize> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>Full</DebugType> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters