-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rebrand project to use Vezel.Zig.Toolsets.* naming pattern.
- Loading branch information
Showing
24 changed files
with
81 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ document to familiarize yourself with the development process. | |
|
||
## Issue Tracker | ||
|
||
The [issue tracker](https://github.com/vezel-dev/zig-msbuild-toolsets/issues) is | ||
where all bug reports and feature requests should be posted. Other community | ||
areas are not appropriate for these as issues raised there are likely to be lost | ||
or forgotten. | ||
The [issue tracker](https://github.com/vezel-dev/zig-toolsets/issues) is where | ||
all bug reports and feature requests should be posted. Other community areas are | ||
not appropriate for these as issues raised there are likely to be lost or | ||
forgotten. | ||
|
||
Please respect the following points when posting on the issue tracker: | ||
|
||
|
@@ -27,7 +27,7 @@ being enacted. | |
|
||
We use labels to organize issues on the GitHub issue tracker. A full list of | ||
labels can be found | ||
[here](https://github.com/vezel-dev/zig-msbuild-toolsets/labels), along with | ||
[here](https://github.com/vezel-dev/zig-toolsets/labels), along with | ||
descriptions of each. Here are a few guidelines for how issue labels are to be | ||
applied: | ||
|
||
|
@@ -82,10 +82,10 @@ feature is a welcome addition. | |
|
||
## Pull Requests | ||
|
||
[Pull requests](https://github.com/vezel-dev/zig-msbuild-toolsets/pulls) are a | ||
great way to contribute, whether it be code or documentation improvements. It is | ||
a good idea to check the issue tracker to see if someone else is already working | ||
on something before you start work on it. For feature additions, it is also | ||
[Pull requests](https://github.com/vezel-dev/zig-toolsets/pulls) are a great way | ||
to contribute, whether it be code or documentation improvements. It is a good | ||
idea to check the issue tracker to see if someone else is already working on | ||
something before you start work on it. For feature additions, it is also | ||
important to open a feature request on the issue tracker to see if the | ||
maintainers are actually interested in merging it. | ||
|
||
|
@@ -131,10 +131,10 @@ Once you have a forked repository, clone and set it up locally: | |
|
||
```bash | ||
# Replace <your-name> with your GitHub user name. | ||
git clone [email protected]:<your-name>/zig-msbuild-toolsets.git | ||
cd zig-msbuild-toolsets | ||
git clone [email protected]:<your-name>/zig-toolsets.git | ||
cd zig-toolsets | ||
# Set up a remote pointing to the upstream repository. | ||
git remote add upstream [email protected]:vezel-dev/zig-msbuild-toolsets.git | ||
git remote add upstream [email protected]:vezel-dev/zig-toolsets.git | ||
``` | ||
|
||
Whenever you need to update your fork, do something like this: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
# Zig MSBuild Toolsets | ||
# Zig Toolsets | ||
|
||
This project packs and distributes the [Zig](https://ziglang.org) compiler and | ||
standard library in a set of NuGet packages for each platform that .NET runs on. | ||
These packages are mainly used by the | ||
[Zig MSBuild SDK](https://github.com/vezel-dev/zig-msbuild-sdk) but can also be | ||
used by other projects. | ||
These packages are mainly used by | ||
[Zig.Sdk](https://github.com/vezel-dev/zig-sdk) but can also be used by other | ||
projects. | ||
|
||
* For every official release of Zig, a set of NuGet packages with the name | ||
pattern `Zig.Toolset.<rid>` is published, where `<rid>` is replaced with | ||
`linux-arm64`, `osx-x64`, `win-x86`, etc. | ||
pattern `Vezel.Zig.Toolsets.<rid>` is published, where `<rid>` is replaced | ||
with `linux-arm64`, `osx-x64`, `win-x86`, etc. | ||
* Only the RIDs that .NET runs on are covered (so e.g. | ||
`Zig.Toolset.linux-riscv64` is *not* available). | ||
`Vezel.Zig.Toolsets.linux-riscv64` is *not* available). | ||
* The package version matches the official Zig release's version, with an extra | ||
fourth component added indicating the packaging version. | ||
|
||
This project offers the following packages: | ||
|
||
* [Zig.Toolset.linux-arm](https://www.nuget.org/packages/Zig.Toolset.linux-arm): | ||
* [Vezel.Zig.Toolsets.linux-arm](https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-arm): | ||
Provides the toolset for the `linux-arm` build platform. | ||
* [Zig.Toolset.linux-arm64](https://www.nuget.org/packages/Zig.Toolset.linux-arm64): | ||
* [Vezel.Zig.Toolsets.linux-arm64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-arm64): | ||
Provides the toolset for the `linux-arm64` build platform. | ||
* [Zig.Toolset.linux-x64](https://www.nuget.org/packages/Zig.Toolset.linux-x64): | ||
* [Vezel.Zig.Toolsets.linux-x64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-x64): | ||
Provides the toolset for the `linux-x64` build platform. | ||
* [Zig.Toolset.osx-arm64](https://www.nuget.org/packages/Zig.Toolset.osx-arm64): | ||
* [Vezel.Zig.Toolsets.osx-arm64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.osx-arm64): | ||
Provides the toolset for the `osx-arm64` build platform. | ||
* [Zig.Toolset.osx-x64](https://www.nuget.org/packages/Zig.Toolset.osx-x64): | ||
* [Vezel.Zig.Toolsets.osx-x64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.osx-x64): | ||
Provides the toolset for the `osx-x64` build platform. | ||
* [Zig.Toolset.win-arm64](https://www.nuget.org/packages/Zig.Toolset.win-arm64): | ||
* [Vezel.Zig.Toolsets.win-arm64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-arm64): | ||
Provides the toolset for the `win-arm64` build platform. | ||
* [Zig.Toolset.win-x64](https://www.nuget.org/packages/Zig.Toolset.win-x64): | ||
* [Vezel.Zig.Toolsets.win-x64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-x64): | ||
Provides the toolset for the `win-x64` build platform. | ||
* [Zig.Toolset.win-x86](https://www.nuget.org/packages/Zig.Toolset.win-x86): | ||
* [Vezel.Zig.Toolsets.win-x86](https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-x86): | ||
Provides the toolset for the `win-x86` build platform. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.