1
|
<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
|
<Configurations>Debug;Release</Configurations>
|
23
|
</PropertyGroup>
|
24
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
|
25
|
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
|
26
|
</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
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net452|AnyCPU'">
|
35
|
<OutputPath>..\bin\Debug\NetSparkle\</OutputPath>
|
36
|
<DocumentationFile>..\bin\Debug\NetSparkle\NetSparkle.xml</DocumentationFile>
|
37
|
</PropertyGroup>
|
38
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
|
39
|
<OutputPath>..\bin\Release\NetSparkle\</OutputPath>
|
40
|
<DocumentationFile>..\bin\Release\NetSparkle\NetSparkle.xml</DocumentationFile>
|
41
|
</PropertyGroup>
|
42
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
|
43
|
<OutputPath>..\bin\Debug\NetSparkle\</OutputPath>
|
44
|
<DocumentationFile>..\bin\Debug\NetSparkle\NetSparkle.xml</DocumentationFile>
|
45
|
</PropertyGroup>
|
46
|
<!-- .NET 4.5 references, compilation flags and build options -->
|
47
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
|
48
|
<Reference Include="System" />
|
49
|
<Reference Include="System.Core" />
|
50
|
<Reference Include="System.Data" />
|
51
|
<Reference Include="System.Data.DataSetExtensions" />
|
52
|
<Reference Include="System.Management" />
|
53
|
<Reference Include="System.Net.Http" />
|
54
|
<Reference Include="System.Xml" />
|
55
|
<Reference Include="System.Xml.Linq" />
|
56
|
</ItemGroup>
|
57
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
58
|
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0">
|
59
|
</PackageReference>
|
60
|
<PackageReference Include="NSec.Cryptography" Version="20.2.0" />
|
61
|
</ItemGroup>
|
62
|
<ItemGroup>
|
63
|
<Compile Remove="nuget\**" />
|
64
|
<EmbeddedResource Remove="nuget\**" />
|
65
|
<None Remove="nuget\**" />
|
66
|
</ItemGroup>
|
67
|
<ItemGroup>
|
68
|
<None Include="..\..\LICENSE.md">
|
69
|
<Pack>True</Pack>
|
70
|
<PackagePath></PackagePath>
|
71
|
</None>
|
72
|
<None Include="ArtWork\software-update-available.png">
|
73
|
<Pack>True</Pack>
|
74
|
<PackagePath></PackagePath>
|
75
|
</None>
|
76
|
</ItemGroup>
|
77
|
<ItemGroup Condition="'$(TargetFramework)' == 'net452'">
|
78
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
79
|
</ItemGroup>
|
80
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
81
|
<PackageReference Include="System.Text.Json" Version="4.7.1">
|
82
|
</PackageReference>
|
83
|
</ItemGroup>
|
84
|
<ItemGroup>
|
85
|
<PackageReference Include="Portable.BouncyCastle" Version="1.8.6.7" />
|
86
|
</ItemGroup>
|
87
|
</Project>
|