Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Duplicati.Library.AutoUpdater.csproj « AutoUpdater « Library « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78440d3c003566afcbdf0f79890531a4d5627a18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{7E119745-1F62-43F0-936C-F312A1912C0B}</ProjectGuid>
    <OutputType>Exe</OutputType>
    <RootNamespace>Duplicati.Library.AutoUpdater</RootNamespace>
    <AssemblyName>Duplicati.Library.AutoUpdater</AssemblyName>
    <SignAssembly>true</SignAssembly>
    <AssemblyOriginatorKeyFile>..\..\GUI\Duplicati.GUI.TrayIcon\Duplicati.snk</AssemblyOriginatorKeyFile>
    <StartupObject>Duplicati.Library.AutoUpdater.Program</StartupObject>
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    <TargetFrameworkProfile />
    <ProductVersion>8.0.30703</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug</OutputPath>
    <DefineConstants>DEBUG;</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <ConsolePause>false</ConsolePause>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>full</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <ConsolePause>false</ConsolePause>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="Newtonsoft.Json">
      <HintPath>..\..\..\packages\Newtonsoft.Json.8.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="UpdaterManager.cs" />
    <Compile Include="UpdateInfo.cs" />
    <Compile Include="FileEntry.cs" />
    <Compile Include="SignatureReadingStream.cs" />
    <Compile Include="AutoUpdateSettings.cs" />
    <Compile Include="Program.cs" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <ItemGroup>
    <ProjectReference Include="..\Utility\Duplicati.Library.Utility.csproj">
      <Project>{DE3E5D4C-51AB-4E5E-BEE8-E636CEBFBA65}</Project>
      <Name>Duplicati.Library.Utility</Name>
    </ProjectReference>
    <ProjectReference Include="..\Compression\Duplicati.Library.Compression.csproj">
      <Project>{19ECCE09-B5EB-406C-8C57-BAC66997D469}</Project>
      <Name>Duplicati.Library.Compression</Name>
    </ProjectReference>
    <ProjectReference Include="..\Interface\Duplicati.Library.Interface.csproj">
      <Project>{C5899F45-B0FF-483C-9D38-24A9FCAAB237}</Project>
      <Name>Duplicati.Library.Interface</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="AutoUpdateAppName.txt" />
    <EmbeddedResource Include="AutoUpdateSignKey.txt" />
    <EmbeddedResource Include="AutoUpdateURL.txt" />
    <EmbeddedResource Include="AutoUpdateFolderReadme.txt" />
    <EmbeddedResource Include="AutoUpdateInstallIDTemplate.txt" />
  </ItemGroup>
  <ItemGroup>
    <None Include="app.config" />
    <None Include="packages.config" />
  </ItemGroup>
</Project>