StableVersion4.3/AppAutoUpdater/AutoUpdater/AutoUpdater.csproj

100 lines
3.9 KiB
XML
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{4BA4719C-C6AB-49BA-9754-848CA24C1FD6}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AutoUpdater</RootNamespace>
<AssemblyName>AutoUpdater</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AutoUpdateHelper\AutoUpdater.cs" />
<Compile Include="AutoUpdateHelper\CommonUnitity.cs" />
<Compile Include="AutoUpdateHelper\Config.cs" />
<Compile Include="AutoUpdateHelper\ConstFile.cs" />
<Compile Include="AutoUpdateHelper\DownloadFileInfo.cs" />
<Compile Include="AutoUpdateHelper\IAutoUpdater.cs" />
<Compile Include="AutoUpdateHelper\LocalFile.cs" />
<Compile Include="AutoUpdateHelper\RemoteFile.cs" />
<Compile Include="AutoUpdateHelper\UpdateFileList.cs" />
<Compile Include="DownloadConfirm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="DownloadConfirm.designer.cs">
<DependentUpon>DownloadConfirm.cs</DependentUpon>
</Compile>
<Compile Include="DownloadProgress.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="DownloadProgress.designer.cs">
<DependentUpon>DownloadProgress.cs</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="DownloadConfirm.resx">
<DependentUpon>DownloadConfirm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="DownloadProgress.resx">
<DependentUpon>DownloadProgress.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="Autoupdater.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\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>