mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-16 09:01:27 +00:00
All info panels now show the current real index of the element (as it would be when saved or loaded at that moment)
246 lines
No EOL
11 KiB
XML
246 lines
No EOL
11 KiB
XML
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>8.0.50727</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{B42D5AA0-F9A6-4234-9C4B-A05B11A64851}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>CodeImp.DoomBuilder.BuilderModes</RootNamespace>
|
|
<AssemblyName>BuilderModes</AssemblyName>
|
|
<RunPostBuildEvent>Always</RunPostBuildEvent>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<OutputPath>..\..\Build\Plugins\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DebugType>full</DebugType>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
<OutputPath>..\..\Build\Plugins\</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Optimize>true</Optimize>
|
|
<DebugType>none</DebugType>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug with revision lookup|x86' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<OutputPath>..\..\Build\Plugins\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DebugType>full</DebugType>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="ClassicModes\BaseClassicMode.cs" />
|
|
<Compile Include="ClassicModes\BrightnessMode.cs" />
|
|
<Compile Include="ClassicModes\HeightsMode.cs" />
|
|
<Compile Include="ClassicModes\ErrorCheckMode.cs" />
|
|
<Compile Include="ClassicModes\EditSelectionMode.cs" />
|
|
<Compile Include="ClassicModes\CurveLinedefsMode.cs" />
|
|
<Compile Include="ClassicModes\DragLinedefsMode.cs" />
|
|
<Compile Include="ClassicModes\DragSectorsMode.cs" />
|
|
<Compile Include="ClassicModes\DragGeometryMode.cs" />
|
|
<Compile Include="ClassicModes\DrawGeometryMode.cs" />
|
|
<Compile Include="ClassicModes\FindReplaceMode.cs" />
|
|
<Compile Include="ClassicModes\MakeSectorMode.cs" />
|
|
<Compile Include="ClassicModes\TriangulatorMode.cs" />
|
|
<Compile Include="ErrorChecks\CheckClosedSectors.cs" />
|
|
<Compile Include="ErrorChecks\CheckStuckedThings.cs" />
|
|
<Compile Include="ErrorChecks\CheckLineReferences.cs" />
|
|
<Compile Include="ErrorChecks\CheckOverlappingLines.cs" />
|
|
<Compile Include="ErrorChecks\ResultLineOverlapping.cs" />
|
|
<Compile Include="ErrorChecks\ResultLineNotSingleSided.cs" />
|
|
<Compile Include="ErrorChecks\ResultLineNotDoubleSided.cs" />
|
|
<Compile Include="ErrorChecks\ResultLineMissingFront.cs" />
|
|
<Compile Include="ErrorChecks\ResultLineMissingSides.cs" />
|
|
<Compile Include="ErrorChecks\ResultSectorUnclosed.cs" />
|
|
<Compile Include="ErrorChecks\ResultStuckedThing.cs" />
|
|
<Compile Include="ErrorChecks\ErrorResult.cs" />
|
|
<Compile Include="ErrorChecks\ErrorCheckerAttribute.cs" />
|
|
<Compile Include="ErrorChecks\ErrorChecker.cs" />
|
|
<Compile Include="ErrorChecks\ResultThingOutside.cs" />
|
|
<Compile Include="FindReplace\FindLinedefTypes.cs" />
|
|
<Compile Include="FindReplace\FindReplaceAttribute.cs" />
|
|
<Compile Include="FindReplace\FindReplaceObject.cs" />
|
|
<Compile Include="FindReplace\FindReplaceType.cs" />
|
|
<Compile Include="FindReplace\FindSectorTags.cs" />
|
|
<Compile Include="General\Association.cs" />
|
|
<Compile Include="General\BuilderPlug.cs" />
|
|
<Compile Include="General\CopyStructures.cs" />
|
|
<Compile Include="Interface\CurveLinedefsForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Interface\CurveLinedefsForm.Designer.cs">
|
|
<DependentUpon>CurveLinedefsForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Interface\ErrorCheckForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Interface\ErrorCheckForm.Designer.cs">
|
|
<DependentUpon>ErrorCheckForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Interface\FindReplaceForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Interface\FindReplaceForm.Designer.cs">
|
|
<DependentUpon>FindReplaceForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Interface\MakeDoorForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Interface\MakeDoorForm.Designer.cs">
|
|
<DependentUpon>MakeDoorForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Interface\MenusForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Interface\MenusForm.Designer.cs">
|
|
<DependentUpon>MenusForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Interface\PreferencesForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Interface\PreferencesForm.Designer.cs">
|
|
<DependentUpon>PreferencesForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="ClassicModes\DragThingsMode.cs" />
|
|
<Compile Include="General\LineLengthLabel.cs" />
|
|
<Compile Include="VisualModes\IVisualEventReceiver.cs" />
|
|
<Compile Include="VisualModes\BaseVisualGeometrySector.cs" />
|
|
<Compile Include="VisualModes\BaseVisualGeometrySidedef.cs" />
|
|
<Compile Include="VisualModes\BaseVisualMode.cs" />
|
|
<Compile Include="VisualModes\BaseVisualSector.cs" />
|
|
<Compile Include="ClassicModes\DragVerticesMode.cs" />
|
|
<Compile Include="ClassicModes\LinedefsMode.cs" />
|
|
<Compile Include="VisualModes\BaseVisualThing.cs" />
|
|
<Compile Include="VisualModes\VisualCeiling.cs" />
|
|
<Compile Include="VisualModes\VisualFloor.cs" />
|
|
<Compile Include="VisualModes\VisualLower.cs" />
|
|
<Compile Include="VisualModes\VisualMiddleSingle.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="ClassicModes\SectorsMode.cs" />
|
|
<Compile Include="ClassicModes\ThingsMode.cs" />
|
|
<Compile Include="ClassicModes\VerticesMode.cs" />
|
|
<Compile Include="VisualModes\VisualMiddleDouble.cs" />
|
|
<Compile Include="VisualModes\VisualSidedefParts.cs" />
|
|
<Compile Include="VisualModes\VisualUpper.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\Actions.cfg" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\ThingsMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\VerticesMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\LinesMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\SectorsMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\WAuthor.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Interface\CurveLinedefsForm.resx">
|
|
<SubType>Designer</SubType>
|
|
<DependentUpon>CurveLinedefsForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Interface\MenusForm.resx">
|
|
<SubType>Designer</SubType>
|
|
<DependentUpon>MenusForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Resources\VisualMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Builder.csproj">
|
|
<Project>{818B3D10-F791-4C3F-9AF5-BB2D0079B63C}</Project>
|
|
<Name>Builder</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\BrightnessMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Interface\ErrorCheckForm.resx">
|
|
<SubType>Designer</SubType>
|
|
<DependentUpon>ErrorCheckForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Interface\FindReplaceForm.resx">
|
|
<DependentUpon>FindReplaceForm.cs</DependentUpon>
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Interface\MakeDoorForm.resx">
|
|
<SubType>Designer</SubType>
|
|
<DependentUpon>MakeDoorForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
<SubType>Designer</SubType>
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Resources\NewSector2.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\treeview.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\BrightnessGradient.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\TriangulatorMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\FindMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Interface\PreferencesForm.resx">
|
|
<SubType>Designer</SubType>
|
|
<DependentUpon>PreferencesForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Resources\MapAnalysisMode.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\FlipSelectionH.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\FlipSelectionV.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\HeightsMode.png" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
<PropertyGroup>
|
|
<PreBuildEvent>"$(SolutionDir)VersionFromSVN.exe" "$(ProjectDir)Properties\AssemblyInfo.cs" -F 0 -M "Debug" "$(ConfigurationName)"
|
|
"$(SolutionDir)VersionFromSVN.exe" "$(ProjectDir)Properties\AssemblyInfo.cs" -M "Release" "$(ConfigurationName)"
|
|
"$(SolutionDir)VersionFromSVN.exe" "$(ProjectDir)Properties\AssemblyInfo.cs" -M "Debug with revision lookup" "$(ConfigurationName)"</PreBuildEvent>
|
|
<PostBuildEvent>"$(SolutionDir)VersionFromSVN.exe" -R "$(ProjectDir)Properties\AssemblyInfo.cs" -M "Release" "$(ConfigurationName)"
|
|
"$(SolutionDir)VersionFromSVN.exe" -R "$(ProjectDir)Properties\AssemblyInfo.cs" -M "Debug with revision lookup" "$(ConfigurationName)"</PostBuildEvent>
|
|
</PropertyGroup>
|
|
</Project> |