Skip to content
This repository was archived by the owner on Jan 27, 2025. It is now read-only.

Commit 36cf9b8

Browse files
committed
Prep for self-contained distribution #80
1 parent 59ac8ff commit 36cf9b8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ upack is a command-line tool used to create and install universal packages; you
66

77
## Installation
88

9-
upack requires the [.NET 6 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/6.0/runtime).
10-
119
##### Use dotnet tool install:
1210

1311
upack is available as a dotnet tool. You can install it using `dotnet tool install upack` and then execute it using `dotnet upack`.
1412

1513
##### Download Tool:
1614

17-
If you don't want to use upack as a dotnet tool, you can download it from the [GitHub Releases Page](https://github.com/Inedo/upack/releases) instead.
15+
If you don't want to use upack as a dotnet tool, you can download it from the [GitHub Releases Page](https://github.com/Inedo/upack/releases) instead. You can either download a self-contained binary that targets your specific operating system, or a generic distribution that requires an installed .net version.
16+
17+
Self-contained OS-specific downloads have no external dependencies.
1818

1919
## Command Line Reference
2020

src/upack/upack.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
44
<Title>upack</Title>
55
<Authors>Inedo</Authors>
66
<Company>Inedo</Company>
77
<Product>upack</Product>
88
<Description>upack is a simple CLI tool for building, installing, and publishing universal packages to upack feeds.</Description>
9-
<Copyright>Copyright © Inedo 2023</Copyright>
9+
<Copyright>Copyright © Inedo 2024</Copyright>
1010
<OutputType>Exe</OutputType>
1111
<RootNamespace>Inedo.UPack.CLI</RootNamespace>
1212
<ImplicitUsings>true</ImplicitUsings>

0 commit comments

Comments
 (0)