Skip to content

Commit 6ae14ad

Browse files
committed
Rebrand project to use Vezel.Zig.Toolsets.* naming pattern.
1 parent c772e4c commit 6ae14ad

24 files changed

+81
-81
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
DOTNET_NOLOGO: true
1414
jobs:
1515
release:
16-
if: github.repository == 'vezel-dev/zig-msbuild-toolsets'
16+
if: github.repository == 'vezel-dev/zig-toolsets'
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Clone repository

CONTRIBUTING.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ document to familiarize yourself with the development process.
55

66
## Issue Tracker
77

8-
The [issue tracker](https://github.com/vezel-dev/zig-msbuild-toolsets/issues) is
9-
where all bug reports and feature requests should be posted. Other community
10-
areas are not appropriate for these as issues raised there are likely to be lost
11-
or forgotten.
8+
The [issue tracker](https://github.com/vezel-dev/zig-toolsets/issues) is where
9+
all bug reports and feature requests should be posted. Other community areas are
10+
not appropriate for these as issues raised there are likely to be lost or
11+
forgotten.
1212

1313
Please respect the following points when posting on the issue tracker:
1414

@@ -27,7 +27,7 @@ being enacted.
2727

2828
We use labels to organize issues on the GitHub issue tracker. A full list of
2929
labels can be found
30-
[here](https://github.com/vezel-dev/zig-msbuild-toolsets/labels), along with
30+
[here](https://github.com/vezel-dev/zig-toolsets/labels), along with
3131
descriptions of each. Here are a few guidelines for how issue labels are to be
3232
applied:
3333

@@ -82,10 +82,10 @@ feature is a welcome addition.
8282

8383
## Pull Requests
8484

85-
[Pull requests](https://github.com/vezel-dev/zig-msbuild-toolsets/pulls) are a
86-
great way to contribute, whether it be code or documentation improvements. It is
87-
a good idea to check the issue tracker to see if someone else is already working
88-
on something before you start work on it. For feature additions, it is also
85+
[Pull requests](https://github.com/vezel-dev/zig-toolsets/pulls) are a great way
86+
to contribute, whether it be code or documentation improvements. It is a good
87+
idea to check the issue tracker to see if someone else is already working on
88+
something before you start work on it. For feature additions, it is also
8989
important to open a feature request on the issue tracker to see if the
9090
maintainers are actually interested in merging it.
9191

@@ -131,10 +131,10 @@ Once you have a forked repository, clone and set it up locally:
131131

132132
```bash
133133
# Replace <your-name> with your GitHub user name.
134-
git clone git@github.com:<your-name>/zig-msbuild-toolsets.git
135-
cd zig-msbuild-toolsets
134+
git clone git@github.com:<your-name>/zig-toolsets.git
135+
cd zig-toolsets
136136
# Set up a remote pointing to the upstream repository.
137-
git remote add upstream git@github.com:vezel-dev/zig-msbuild-toolsets.git
137+
git remote add upstream git@github.com:vezel-dev/zig-toolsets.git
138138
```
139139

140140
Whenever you need to update your fork, do something like this:

Directory.Build.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project>
22
<PropertyGroup>
3-
<Product>Zig MSBuild Toolsets</Product>
3+
<Product>Zig Toolsets</Product>
44
<Description>The Zig compiler and standard library packaged for use in MSBuild.</Description>
55
<Company>Vezel</Company>
6-
<Authors>Zig Contributors, $(Company) Maintainers</Authors>
6+
<Authors>Zig Contributors, $(Company) Contributors</Authors>
77
<Copyright>Copyright © $(Authors)</Copyright>
88
<ZigVersion>0.9.1</ZigVersion>
9-
<ToolsetVersion>1</ToolsetVersion>
9+
<ToolsetVersion>2</ToolsetVersion>
1010
<Version>$(ZigVersion).$(ToolsetVersion)</Version>
1111
</PropertyGroup>
1212

@@ -22,13 +22,13 @@
2222

2323
This project packs and distributes the Zig compiler and standard library in a
2424
set of NuGet packages for each platform that .NET runs on. These packages are
25-
mainly used by the Zig MSBuild SDK but can also be used by other projects.</PackageDescription>
25+
mainly used by Zig.Sdk but can also be used by other projects.</PackageDescription>
2626
<PackageLicenseExpression>0BSD AND MIT</PackageLicenseExpression>
2727
<PackageOutputPath>$(MSBuildThisFileDirectory)pkg/feed/</PackageOutputPath>
2828
<PackageProjectUrl>https://ziglang.org</PackageProjectUrl>
2929
<PackageReleaseNotes>https://ziglang.org/download/$(ZigVersion)/release-notes.html</PackageReleaseNotes>
3030
<PublishRepositoryUrl>true</PublishRepositoryUrl>
31-
<RepositoryUrl>https://github.com/vezel-dev/zig-msbuild-toolsets.git</RepositoryUrl>
31+
<RepositoryUrl>https://github.com/vezel-dev/zig-toolsets.git</RepositoryUrl>
3232
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
3333
</PropertyGroup>
3434
</Project>

PACKAGE.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
# Zig MSBuild Toolsets
1+
# Zig Toolsets
22

33
This project packs and distributes the [Zig](https://ziglang.org) compiler and
44
standard library in a set of NuGet packages for each platform that .NET runs on.
5-
These packages are mainly used by the
6-
[Zig MSBuild SDK](https://github.com/vezel-dev/zig-msbuild-sdk) but can also be
7-
used by other projects.
5+
These packages are mainly used by
6+
[Zig.Sdk](https://github.com/vezel-dev/zig-sdk) but can also be used by other
7+
projects.
88

99
* For every official release of Zig, a set of NuGet packages with the name
10-
pattern `Zig.Toolset.<rid>` is published, where `<rid>` is replaced with
11-
`linux-arm64`, `osx-x64`, `win-x86`, etc.
10+
pattern `Vezel.Zig.Toolsets.<rid>` is published, where `<rid>` is replaced
11+
with `linux-arm64`, `osx-x64`, `win-x86`, etc.
1212
* Only the RIDs that .NET runs on are covered (so e.g.
13-
`Zig.Toolset.linux-riscv64` is *not* available).
13+
`Vezel.Zig.Toolsets.linux-riscv64` is *not* available).
1414
* The package version matches the official Zig release's version, with an extra
1515
fourth component added indicating the packaging version.
1616

1717
This project offers the following packages:
1818

19-
* [Zig.Toolset.linux-arm](https://www.nuget.org/packages/Zig.Toolset.linux-arm):
19+
* [Vezel.Zig.Toolsets.linux-arm](https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-arm):
2020
Provides the toolset for the `linux-arm` build platform.
21-
* [Zig.Toolset.linux-arm64](https://www.nuget.org/packages/Zig.Toolset.linux-arm64):
21+
* [Vezel.Zig.Toolsets.linux-arm64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-arm64):
2222
Provides the toolset for the `linux-arm64` build platform.
23-
* [Zig.Toolset.linux-x64](https://www.nuget.org/packages/Zig.Toolset.linux-x64):
23+
* [Vezel.Zig.Toolsets.linux-x64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-x64):
2424
Provides the toolset for the `linux-x64` build platform.
25-
* [Zig.Toolset.osx-arm64](https://www.nuget.org/packages/Zig.Toolset.osx-arm64):
25+
* [Vezel.Zig.Toolsets.osx-arm64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.osx-arm64):
2626
Provides the toolset for the `osx-arm64` build platform.
27-
* [Zig.Toolset.osx-x64](https://www.nuget.org/packages/Zig.Toolset.osx-x64):
27+
* [Vezel.Zig.Toolsets.osx-x64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.osx-x64):
2828
Provides the toolset for the `osx-x64` build platform.
29-
* [Zig.Toolset.win-arm64](https://www.nuget.org/packages/Zig.Toolset.win-arm64):
29+
* [Vezel.Zig.Toolsets.win-arm64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-arm64):
3030
Provides the toolset for the `win-arm64` build platform.
31-
* [Zig.Toolset.win-x64](https://www.nuget.org/packages/Zig.Toolset.win-x64):
31+
* [Vezel.Zig.Toolsets.win-x64](https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-x64):
3232
Provides the toolset for the `win-x64` build platform.
33-
* [Zig.Toolset.win-x86](https://www.nuget.org/packages/Zig.Toolset.win-x86):
33+
* [Vezel.Zig.Toolsets.win-x86](https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-x86):
3434
Provides the toolset for the `win-x86` build platform.

README.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Zig MSBuild Toolsets
1+
# Zig Toolsets
22

33
<div align="center">
44
<img src="zig.svg"
@@ -14,24 +14,24 @@
1414
<div align="center">
1515

1616
[![License](https://img.shields.io/badge/license-0BSD%20AND%20MIT-brown)](LICENSE.md)
17-
[![Commits](https://img.shields.io/github/commit-activity/m/vezel-dev/zig-msbuild-toolsets/master?label=commits&color=slateblue)](https://github.com/vezel-dev/zig-msbuild-toolsets/commits/master)
18-
[![Build](https://img.shields.io/github/workflow/status/vezel-dev/zig-msbuild-toolsets/Build/master)](https://github.com/vezel-dev/zig-msbuild-toolsets/actions/workflows/build.yml)
17+
[![Commits](https://img.shields.io/github/commit-activity/m/vezel-dev/zig-toolsets/master?label=commits&color=slateblue)](https://github.com/vezel-dev/zig-toolsets/commits/master)
18+
[![Build](https://img.shields.io/github/workflow/status/vezel-dev/zig-toolsets/Build/master)](https://github.com/vezel-dev/zig-toolsets/actions/workflows/build.yml)
1919

2020
</div>
2121

2222
---
2323

2424
This project packs and distributes the [Zig](https://ziglang.org) compiler and
2525
standard library in a set of NuGet packages for each platform that .NET runs on.
26-
These packages are mainly used by the
27-
[Zig MSBuild SDK](https://github.com/vezel-dev/zig-msbuild-sdk) but can also be
28-
used by other projects.
26+
These packages are mainly used by
27+
[Zig.Sdk](https://github.com/vezel-dev/zig-sdk) but can also be used by other
28+
projects.
2929

3030
* For every official release of Zig, a set of NuGet packages with the name
31-
pattern `Zig.Toolset.<rid>` is published, where `<rid>` is replaced with
32-
`linux-arm64`, `osx-x64`, `win-x86`, etc.
31+
pattern `Vezel.Zig.Toolsets.<rid>` is published, where `<rid>` is replaced
32+
with `linux-arm64`, `osx-x64`, `win-x86`, etc.
3333
* Only the RIDs that .NET runs on are covered (so e.g.
34-
`Zig.Toolset.linux-riscv64` is *not* available).
34+
`Vezel.Zig.Toolsets.linux-riscv64` is *not* available).
3535
* The package version matches the official Zig release's version, with an extra
3636
fourth component added indicating the packaging version.
3737

@@ -41,41 +41,41 @@ This project offers the following packages:
4141

4242
| Package | Description | Downloads |
4343
| -: | - | :- |
44-
| [![Zig.Toolset.linux-arm][linux-arm-img]][linux-arm-pkg] | Provides the toolset for the `linux-arm` build platform. | ![Downloads][linux-arm-dls] |
45-
| [![Zig.Toolset.linux-arm64][linux-arm64-img]][linux-arm64-pkg] | Provides the toolset for the `linux-arm64` build platform. | ![Downloads][linux-arm64-dls] |
46-
| [![Zig.Toolset.linux-x64][linux-x64-img]][linux-x64-pkg] | Provides the toolset for the `linux-x64` build platform. | ![Downloads][linux-x64-dls] |
47-
| [![Zig.Toolset.osx-arm64][osx-arm64-img]][osx-arm64-pkg] | Provides the toolset for the `osx-arm64` build platform. | ![Downloads][osx-arm64-dls] |
48-
| [![Zig.Toolset.osx-x64][osx-x64-img]][osx-x64-pkg] | Provides the toolset for the `osx-x64` build platform. | ![Downloads][osx-x64-dls] |
49-
| [![Zig.Toolset.win-arm64][win-arm64-img]][win-arm64-pkg] | Provides the toolset for the `win-arm64` build platform. | ![Downloads][win-arm64-dls] |
50-
| [![Zig.Toolset.win-x64][win-x64-img]][win-x64-pkg] | Provides the toolset for the `win-x64` build platform. | ![Downloads][win-x64-dls] |
51-
| [![Zig.Toolset.win-x86][win-x86-img]][win-x86-pkg] | Provides the toolset for the `win-x86` build platform. | ![Downloads][win-x86-dls] |
52-
53-
[linux-arm-pkg]: https://www.nuget.org/packages/Zig.Toolset.linux-arm
54-
[linux-arm64-pkg]: https://www.nuget.org/packages/Zig.Toolset.linux-arm64
55-
[linux-x64-pkg]: https://www.nuget.org/packages/Zig.Toolset.linux-x64
56-
[osx-arm64-pkg]: https://www.nuget.org/packages/Zig.Toolset.osx-arm64
57-
[osx-x64-pkg]: https://www.nuget.org/packages/Zig.Toolset.osx-x64
58-
[win-arm64-pkg]: https://www.nuget.org/packages/Zig.Toolset.win-arm64
59-
[win-x64-pkg]: https://www.nuget.org/packages/Zig.Toolset.win-x64
60-
[win-x86-pkg]: https://www.nuget.org/packages/Zig.Toolset.win-x86
61-
62-
[linux-arm-img]: https://img.shields.io/nuget/v/Zig.Toolset.linux-arm?label=Zig.Toolset.linux-arm
63-
[linux-arm64-img]: https://img.shields.io/nuget/v/Zig.Toolset.linux-arm64?label=Zig.Toolset.linux-arm64
64-
[linux-x64-img]: https://img.shields.io/nuget/v/Zig.Toolset.linux-x64?label=Zig.Toolset.linux-x64
65-
[osx-arm64-img]: https://img.shields.io/nuget/v/Zig.Toolset.osx-arm64?label=Zig.Toolset.osx-arm64
66-
[osx-x64-img]: https://img.shields.io/nuget/v/Zig.Toolset.osx-x64?label=Zig.Toolset.osx-x64
67-
[win-arm64-img]: https://img.shields.io/nuget/v/Zig.Toolset.win-arm64?label=Zig.Toolset.win-arm64
68-
[win-x64-img]: https://img.shields.io/nuget/v/Zig.Toolset.win-x64?label=Zig.Toolset.win-x64
69-
[win-x86-img]: https://img.shields.io/nuget/v/Zig.Toolset.win-x86?label=Zig.Toolset.win-x86
70-
71-
[linux-arm-dls]: https://img.shields.io/nuget/dt/Zig.Toolset.linux-arm?label=
72-
[linux-arm64-dls]: https://img.shields.io/nuget/dt/Zig.Toolset.linux-arm64?label=
73-
[linux-x64-dls]: https://img.shields.io/nuget/dt/Zig.Toolset.linux-x64?label=
74-
[osx-arm64-dls]: https://img.shields.io/nuget/dt/Zig.Toolset.osx-arm64?label=
75-
[osx-x64-dls]: https://img.shields.io/nuget/dt/Zig.Toolset.osx-x64?label=
76-
[win-arm64-dls]: https://img.shields.io/nuget/dt/Zig.Toolset.win-arm64?label=
77-
[win-x64-dls]: https://img.shields.io/nuget/dt/Zig.Toolset.win-x64?label=
78-
[win-x86-dls]: https://img.shields.io/nuget/dt/Zig.Toolset.win-x86?label=
44+
| [![Vezel.Zig.Toolsets.linux-arm][linux-arm-img]][linux-arm-pkg] | Provides the toolset for the `linux-arm` build platform. | ![Downloads][linux-arm-dls] |
45+
| [![Vezel.Zig.Toolsets.linux-arm64][linux-arm64-img]][linux-arm64-pkg] | Provides the toolset for the `linux-arm64` build platform. | ![Downloads][linux-arm64-dls] |
46+
| [![Vezel.Zig.Toolsets.linux-x64][linux-x64-img]][linux-x64-pkg] | Provides the toolset for the `linux-x64` build platform. | ![Downloads][linux-x64-dls] |
47+
| [![Vezel.Zig.Toolsets.osx-arm64][osx-arm64-img]][osx-arm64-pkg] | Provides the toolset for the `osx-arm64` build platform. | ![Downloads][osx-arm64-dls] |
48+
| [![Vezel.Zig.Toolsets.osx-x64][osx-x64-img]][osx-x64-pkg] | Provides the toolset for the `osx-x64` build platform. | ![Downloads][osx-x64-dls] |
49+
| [![Vezel.Zig.Toolsets.win-arm64][win-arm64-img]][win-arm64-pkg] | Provides the toolset for the `win-arm64` build platform. | ![Downloads][win-arm64-dls] |
50+
| [![Vezel.Zig.Toolsets.win-x64][win-x64-img]][win-x64-pkg] | Provides the toolset for the `win-x64` build platform. | ![Downloads][win-x64-dls] |
51+
| [![Vezel.Zig.Toolsets.win-x86][win-x86-img]][win-x86-pkg] | Provides the toolset for the `win-x86` build platform. | ![Downloads][win-x86-dls] |
52+
53+
[linux-arm-pkg]: https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-arm
54+
[linux-arm64-pkg]: https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-arm64
55+
[linux-x64-pkg]: https://www.nuget.org/packages/Vezel.Zig.Toolsets.linux-x64
56+
[osx-arm64-pkg]: https://www.nuget.org/packages/Vezel.Zig.Toolsets.osx-arm64
57+
[osx-x64-pkg]: https://www.nuget.org/packages/Vezel.Zig.Toolsets.osx-x64
58+
[win-arm64-pkg]: https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-arm64
59+
[win-x64-pkg]: https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-x64
60+
[win-x86-pkg]: https://www.nuget.org/packages/Vezel.Zig.Toolsets.win-x86
61+
62+
[linux-arm-img]: https://img.shields.io/nuget/v/Vezel.Zig.Toolsets.linux-arm?label=Vezel.Zig.Toolsets.linux-arm
63+
[linux-arm64-img]: https://img.shields.io/nuget/v/Vezel.Zig.Toolsets.linux-arm64?label=Vezel.Zig.Toolsets.linux-arm64
64+
[linux-x64-img]: https://img.shields.io/nuget/v/Vezel.Zig.Toolsets.linux-x64?label=Vezel.Zig.Toolsets.linux-x64
65+
[osx-arm64-img]: https://img.shields.io/nuget/v/Vezel.Zig.Toolsets.osx-arm64?label=Vezel.Zig.Toolsets.osx-arm64
66+
[osx-x64-img]: https://img.shields.io/nuget/v/Vezel.Zig.Toolsets.osx-x64?label=Vezel.Zig.Toolsets.osx-x64
67+
[win-arm64-img]: https://img.shields.io/nuget/v/Vezel.Zig.Toolsets.win-arm64?label=Vezel.Zig.Toolsets.win-arm64
68+
[win-x64-img]: https://img.shields.io/nuget/v/Vezel.Zig.Toolsets.win-x64?label=Vezel.Zig.Toolsets.win-x64
69+
[win-x86-img]: https://img.shields.io/nuget/v/Vezel.Zig.Toolsets.win-x86?label=Vezel.Zig.Toolsets.win-x86
70+
71+
[linux-arm-dls]: https://img.shields.io/nuget/dt/Vezel.Zig.Toolsets.linux-arm?label=
72+
[linux-arm64-dls]: https://img.shields.io/nuget/dt/Vezel.Zig.Toolsets.linux-arm64?label=
73+
[linux-x64-dls]: https://img.shields.io/nuget/dt/Vezel.Zig.Toolsets.linux-x64?label=
74+
[osx-arm64-dls]: https://img.shields.io/nuget/dt/Vezel.Zig.Toolsets.osx-arm64?label=
75+
[osx-x64-dls]: https://img.shields.io/nuget/dt/Vezel.Zig.Toolsets.osx-x64?label=
76+
[win-arm64-dls]: https://img.shields.io/nuget/dt/Vezel.Zig.Toolsets.win-arm64?label=
77+
[win-x64-dls]: https://img.shields.io/nuget/dt/Vezel.Zig.Toolsets.win-x64?label=
78+
[win-x86-dls]: https://img.shields.io/nuget/dt/Vezel.Zig.Toolsets.win-x86?label=
7979

8080
To install a package, run `dotnet add package <name>`.
8181

SUPPORT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Support
22

33
The project has a [GitHub Discussions](https://docs.github.com/en/discussions) forum:
4-
[![GitHub Discussions](https://img.shields.io/github/discussions/vezel-dev/zig-msbuild-toolsets)](https://github.com/vezel-dev/zig-msbuild-toolsets/discussions)
4+
[![GitHub Discussions](https://img.shields.io/github/discussions/vezel-dev/zig-toolsets)](https://github.com/vezel-dev/zig-toolsets/discussions)
55

66
Please do *not* use the
7-
[issue tracker](https://github.com/vezel-dev/zig-msbuild-toolsets/issues) for support
7+
[issue tracker](https://github.com/vezel-dev/zig-toolsets/issues) for support
88
requests.
99

1010
When seeking help, please note the following:

nuget.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<packageSources>
99
<clear />
1010
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
11-
<add key="zig-msbuild-toolsets" value="pkg/feed" />
11+
<add key="zig-toolsets" value="pkg/feed" />
1212
</packageSources>
1313
<disabledPackageSources>
1414
<clear />

src/Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PackageDescription>$(PackageDescription)
44

55
This package provides the toolset for the $(ZigBuildRuntime) build platform.</PackageDescription>
6-
<PackageId>Zig.Toolset.$(ZigBuildRuntime)</PackageId>
6+
<PackageId>Vezel.Zig.Toolsets.$(ZigBuildRuntime)</PackageId>
77
</PropertyGroup>
88

99
<PropertyGroup>

0 commit comments

Comments
 (0)