mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 04:12:12 +00:00
197 lines
No EOL
9.9 KiB
XML
197 lines
No EOL
9.9 KiB
XML
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>9.0.30729</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{2A0BA1B2-A0F1-479F-9083-2EC11D6B70DF}</ProjectGuid>
|
|
<OutputType>WinExe</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>mxd.GZDBUpdater</RootNamespace>
|
|
<AssemblyName>Updater</AssemblyName>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<OldToolsVersion>2.0</OldToolsVersion>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
|
<ApplicationIcon>Updater.ico</ApplicationIcon>
|
|
<PublishUrl>publish\</PublishUrl>
|
|
<Install>true</Install>
|
|
<InstallFrom>Disk</InstallFrom>
|
|
<UpdateEnabled>false</UpdateEnabled>
|
|
<UpdateMode>Foreground</UpdateMode>
|
|
<UpdateInterval>7</UpdateInterval>
|
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
|
<UpdatePeriodically>false</UpdatePeriodically>
|
|
<UpdateRequired>false</UpdateRequired>
|
|
<MapFileExtensions>true</MapFileExtensions>
|
|
<ApplicationRevision>0</ApplicationRevision>
|
|
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
|
<UseApplicationTrust>false</UseApplicationTrust>
|
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>..\..\..\Build\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>none</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>..\..\..\Build\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core">
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="MainForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="MainForm.Designer.cs">
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Program.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<EmbeddedResource Include="MainForm.resx">
|
|
<SubType>Designer</SubType>
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<None Include="Updater.ini">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<Compile Include="Helpers\TaskbarProgress.cs" />
|
|
<Compile Include="Helpers\Webdata.cs" />
|
|
<Compile Include="SharpCompress\Archives\AbstractArchive.cs" />
|
|
<Compile Include="SharpCompress\Archives\ArchiveFactory.cs" />
|
|
<Compile Include="SharpCompress\Archives\IArchive.cs" />
|
|
<Compile Include="SharpCompress\Archives\IArchiveEntry.cs" />
|
|
<Compile Include="SharpCompress\Archives\IArchiveExtractionListener.cs" />
|
|
<Compile Include="SharpCompress\Archives\SevenZip\SevenZipArchive.cs" />
|
|
<Compile Include="SharpCompress\Archives\SevenZip\SevenZipArchiveEntry.cs" />
|
|
<Compile Include="SharpCompress\Common\ArchiveExtractionEventArgs.cs" />
|
|
<Compile Include="SharpCompress\Common\ArchiveType.cs" />
|
|
<Compile Include="SharpCompress\Common\CompressionType.cs" />
|
|
<Compile Include="SharpCompress\Common\Entry.cs" />
|
|
<Compile Include="SharpCompress\Common\EntryStream.cs" />
|
|
<Compile Include="SharpCompress\Common\FilePart.cs" />
|
|
<Compile Include="SharpCompress\Common\FilePartExtractionBeginEventArgs.cs" />
|
|
<Compile Include="SharpCompress\Common\IEntry.cs" />
|
|
<Compile Include="SharpCompress\Common\IEntry.Extensions.cs" />
|
|
<Compile Include="SharpCompress\Common\IVolume.cs" />
|
|
<Compile Include="SharpCompress\Common\ReaderExtractionEventArgs.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\ArchiveDatabase.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\ArchiveReader.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\CBindPair.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\CCoderInfo.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\CFileItem.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\CFolder.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\CMethodId.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\CStreamSwitch.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\DataReader.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\SevenZipEntry.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\SevenZipFilePart.cs" />
|
|
<Compile Include="SharpCompress\Common\SevenZip\SevenZipVolume.cs" />
|
|
<Compile Include="SharpCompress\Common\Volume.cs" />
|
|
<Compile Include="SharpCompress\Compressors\Filters\BCJFilter.cs" />
|
|
<Compile Include="SharpCompress\Compressors\Filters\Filter.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\BitVector.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\CRC.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\DecoderStream.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\ICoder.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LzmaBase.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LzmaDecoder.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LzmaEncoder.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LzmaEncoderProperties.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LzmaStream.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LZ\CRC.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LZ\LzBinTree.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LZ\LzInWindow.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\LZ\LzOutWindow.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\RangeCoder\RangeCoder.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\RangeCoder\RangeCoderBit.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\RangeCoder\RangeCoderBitTree.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\Registry.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\Utilities\CrcCheckStream.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\Utilities\IPasswordProvider.cs" />
|
|
<Compile Include="SharpCompress\Compressors\LZMA\Utilities\Utils.cs" />
|
|
<Compile Include="SharpCompress\Converters\DataConverter.cs" />
|
|
<Compile Include="SharpCompress\IO\BufferedSubStream.cs" />
|
|
<Compile Include="SharpCompress\IO\NonDisposingStream.cs" />
|
|
<Compile Include="SharpCompress\IO\ReadOnlySubStream.cs" />
|
|
<Compile Include="SharpCompress\LazyReadOnlyCollection.cs" />
|
|
<Compile Include="SharpCompress\Readers\AbstractReader.cs" />
|
|
<Compile Include="SharpCompress\Readers\ExtractionOptions.cs" />
|
|
<Compile Include="SharpCompress\Readers\IReader.cs" />
|
|
<Compile Include="SharpCompress\Readers\IReaderExtensions.cs" />
|
|
<Compile Include="SharpCompress\Readers\ReaderOptions.cs" />
|
|
<Compile Include="SharpCompress\Utility.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
|
<Visible>False</Visible>
|
|
<ProductName>.NET Framework Client Profile</ProductName>
|
|
<Install>false</Install>
|
|
</BootstrapperPackage>
|
|
<BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
|
|
<Visible>False</Visible>
|
|
<ProductName>.NET Framework 2.0 %28x86%29</ProductName>
|
|
<Install>true</Install>
|
|
</BootstrapperPackage>
|
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
|
|
<Visible>False</Visible>
|
|
<ProductName>.NET Framework 3.0 %28x86%29</ProductName>
|
|
<Install>false</Install>
|
|
</BootstrapperPackage>
|
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
|
|
<Visible>False</Visible>
|
|
<ProductName>.NET Framework 3.5</ProductName>
|
|
<Install>false</Install>
|
|
</BootstrapperPackage>
|
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
|
<Visible>False</Visible>
|
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
|
<Install>false</Install>
|
|
</BootstrapperPackage>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Updater.ico" />
|
|
</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>
|
|
-->
|
|
</Project> |