프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / MarkusAutoUpdate / src / NetSparkle / NetSparkle.csproj @ 3276cb1c

이력 | 보기 | 이력해설 | 다운로드 (6.22 KB)

1 d8f5045e taeseongkim
<Project Sdk="Microsoft.NET.Sdk">
2
3
  <PropertyGroup>
4
    <TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
5
    <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
6
    <PackageId>NetSparkle.New</PackageId>
7
    <Version>2.0.0-preview20200726001</Version>
8
    <Authors>Deadpikle, Dirk Eisenberg</Authors>
9
    <Description>NetSparkleUpdater/NetSparkle is a C# .NET software update framework that allows you to easily download installer files and update your C# .NET Framework or .NET Core software. Built-in UIs are available for WinForms, WPF, and Avalonia. You provide, somewhere on the internet, an XML appcast with software version information along with release notes in Markdown or HTML format. The NetSparkle framework then checks for an update in the background, displays the release notes to the user, and lets users download or skip the software update. The framework can also perform silent downloads so that you can present all of the UI yourself or set up your own silent software update system, as allowed by your software architecture. It was inspired by the Sparkle (https://sparkle-project.org/) project for Cocoa developers and the WinSparkle (https://winsparkle.org/) project (a Win32 port).</Description>
10
    <Copyright>Copyright 2010 - 2020</Copyright>
11
    <PackageProjectUrl>https://github.com/NetSparkleUpdater/NetSparkle</PackageProjectUrl>
12
    <RepositoryUrl>https://github.com/NetSparkleUpdater/NetSparkle.git</RepositoryUrl>
13
    <PackageTags>sparkle, netsparkle, update, software, updater</PackageTags>
14
    <RepositoryType>git</RepositoryType>
15
    <Product>NetSparkle.New</Product>
16
    <PackageIcon>software-update-available.png</PackageIcon>
17
    <PackageIconUrl />
18
    <PackageLicenseFile>LICENSE.md</PackageLicenseFile>
19
    <GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
20
    <RootNamespace>NetSparkleUpdater</RootNamespace>
21
    <PackageReleaseNotes>2.0 Beta: See https://github.com/NetSparkleUpdater/NetSparkle/releases for all release information and to file issues/pull requests for this project.</PackageReleaseNotes>
22 4d2c8ee1 taeseongkim
    <Configurations>Debug;Release;Release_Net452</Configurations>
23 d8f5045e taeseongkim
  </PropertyGroup>
24
  <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
25 4d2c8ee1 taeseongkim
    <DefineConstants>NETSTANDARD</DefineConstants>
26 d8f5045e taeseongkim
  </PropertyGroup>
27
  <PropertyGroup Condition=" '$(TargetFramework)' == 'net452'">
28
    <DefineConstants>NET452;NETFULL;NETFRAMEWORK</DefineConstants>
29
  </PropertyGroup>
30
  <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net452|AnyCPU'">
31
    <OutputPath>..\bin\Release\NetSparkle\</OutputPath>
32
    <DocumentationFile>..\bin\Release\NetSparkle\NetSparkle.xml</DocumentationFile>
33
  </PropertyGroup>
34 4d2c8ee1 taeseongkim
  <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release_Net452|net452|AnyCPU'">
35
    <OutputPath>..\bin\Release\NetSparkle\</OutputPath>
36
    <DocumentationFile>..\bin\Release\NetSparkle\NetSparkle.xml</DocumentationFile>
37
  </PropertyGroup>
38 d8f5045e taeseongkim
  <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net452|AnyCPU'">
39
    <OutputPath>..\bin\Debug\NetSparkle\</OutputPath>
40
    <DocumentationFile>..\bin\Debug\NetSparkle\NetSparkle.xml</DocumentationFile>
41
  </PropertyGroup>
42
  <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
43
    <OutputPath>..\bin\Release\NetSparkle\</OutputPath>
44
    <DocumentationFile>..\bin\Release\NetSparkle\NetSparkle.xml</DocumentationFile>
45
  </PropertyGroup>
46 4d2c8ee1 taeseongkim
  <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release_Net452|netstandard2.0|AnyCPU'">
47
    <OutputPath>..\bin\Release\NetSparkle\</OutputPath>
48
    <DocumentationFile>..\bin\Release\NetSparkle\NetSparkle.xml</DocumentationFile>
49 4b5077f0 taeseongkim
    <Optimize>true</Optimize>
50 4d2c8ee1 taeseongkim
  </PropertyGroup>
51 d8f5045e taeseongkim
  <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
52
    <OutputPath>..\bin\Debug\NetSparkle\</OutputPath>
53
    <DocumentationFile>..\bin\Debug\NetSparkle\NetSparkle.xml</DocumentationFile>
54
  </PropertyGroup>
55
  <!-- .NET 4.5 references, compilation flags and build options -->
56
  <ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
57
    <Reference Include="System" />
58
    <Reference Include="System.Core" />
59
    <Reference Include="System.Data" />
60
    <Reference Include="System.Data.DataSetExtensions" />
61
    <Reference Include="System.Management" />
62
    <Reference Include="System.Net.Http" />
63
    <Reference Include="System.Xml" />
64
    <Reference Include="System.Xml.Linq" />
65
  </ItemGroup>
66
  <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
67
    <PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0">
68
    </PackageReference>
69
    <PackageReference Include="NSec.Cryptography" Version="20.2.0" />
70
  </ItemGroup>
71
  <ItemGroup>
72
    <Compile Remove="nuget\**" />
73
    <EmbeddedResource Remove="nuget\**" />
74
    <None Remove="nuget\**" />
75
  </ItemGroup>
76
  <ItemGroup>
77
    <None Include="..\..\LICENSE.md">
78
      <Pack>True</Pack>
79
      <PackagePath></PackagePath>
80
    </None>
81
    <None Include="ArtWork\software-update-available.png">
82
      <Pack>True</Pack>
83
      <PackagePath></PackagePath>
84
    </None>
85
  </ItemGroup>
86
  <ItemGroup Condition="'$(TargetFramework)' == 'net452'">
87
    <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
88
  </ItemGroup>
89
  <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
90
    <PackageReference Include="System.Text.Json" Version="4.7.1">
91
    </PackageReference>
92
  </ItemGroup>
93
  <ItemGroup>
94
    <PackageReference Include="Portable.BouncyCastle" Version="1.8.6.7" />
95
  </ItemGroup>
96 4b5077f0 taeseongkim
    <Target Name="GetTargetPath" Returns="@(_FakeOutputPath)">
97
    <ItemGroup Condition="'$(OutputType)' == 'Library'">
98
      <_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).dll" />
99
    </ItemGroup>
100
    <ItemGroup Condition="'$(OutputType)' == 'Exe'">
101
      <_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).exe" />
102
    </ItemGroup>
103
    <ItemGroup Condition="'$(OutputType)' == 'WinExe'">
104
      <_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).exe" />
105
    </ItemGroup>
106
  </Target>
107 d8f5045e taeseongkim
</Project>
클립보드 이미지 추가 (최대 크기: 500 MB)