-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathGeneralUpdate.Extension.csproj
More file actions
54 lines (50 loc) · 2.62 KB
/
Copy pathGeneralUpdate.Extension.csproj
File metadata and controls
54 lines (50 loc) · 2.62 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<!-- NuGet Package Metadata -->
<Version>10.5.0-beta.7</Version>
<Authors>JusterZhu</Authors>
<Company>juster.zhu</Company>
<Title>GeneralUpdate.Extension</Title>
<Description>A VS Code-inspired extension system for .NET applications with comprehensive extension management, update, download, installation, rollback, and compatibility checking capabilities. Supports multi-platform extension deployment with dependency resolution.</Description>
<Copyright>Copyright © 2020-2026 JusterZhu. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/GeneralLibrary/GeneralUpdate</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ApplicationIcon>GeneralUpdate.ico</ApplicationIcon>
<PackageIcon>GeneralUpdate.png</PackageIcon>
<RepositoryUrl>https://github.com/GeneralLibrary/GeneralUpdate</RepositoryUrl>
<RepositoryType>public</RepositoryType>
<PackageTags>extension,plugin,update,download,rollback,compatibility,dependency,management</PackageTags>
<PackageReleaseNotes>VS Code-inspired extension system with extension catalog management, download queue, version compatibility checking, dependency resolution, and rollback support.</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
<PackageReference Include="System.IO.Compression.ZipFile" Version="4.3.0" />
</ItemGroup>
<!-- Package Icon -->
<ItemGroup>
<None Include="../../../imgs/GeneralUpdate.ico">
<Pack>True</Pack>
<Link>%(Filename)%(Extension)</Link>
<PackagePath>./</PackagePath>
</None>
<None Include="../../../imgs/GeneralUpdate.png">
<Pack>True</Pack>
<Link>%(Filename)%(Extension)</Link>
<PackagePath>./</PackagePath>
</None>
<None Include="../../../README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>