Skip to content

Commit 1c90cfe

Browse files
authored
Package Changes (#447)
1 parent 9b61368 commit 1c90cfe

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If your contribution affects binder output, let us know by commenting on the pul
2727
Silk.NET uses and encourages [Early Pull Requests](https://medium.com/practical-blend/pull-request-first-f6bb667a9b6). Please don't wait until you're done to open a PR!
2828

2929
1. Install [Git](https://git-scm.com/downloads) and the [.NET Core SDK](https://www.microsoft.com/net/download)
30-
1. [Fork Silk.NET](https://github.com/Ultz/Silk.NET/fork)
30+
1. [Fork Silk.NET](https://github.com/dotnet/Silk.NET/fork)
3131
1. Create a branch on your fork.
3232
1. Add an empty commit to start your work off (and let you open a PR): `git commit --allow-empty -m "start of [thing you're working on]"`
3333
1. Open a [**draft pull request**](https://github.blog/2019-02-14-introducing-draft-pull-requests/). Do this **before** you actually start working.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ Some projects may not build properly without being configured to use Desktop MSB
6565

6666
Silk.NET uses and encourages [Early Pull Requests](https://medium.com/practical-blend/pull-request-first-f6bb667a9b6). Please don't wait until you're done to open a PR!
6767

68-
1. [Fork Silk.NET](https://github.com/Ultz/Silk.NET/fork)
68+
1. [Fork Silk.NET](https://github.com/dotnet/Silk.NET/fork)
6969
2. Add an empty commit to a new branch to start your work off: `git commit --allow-empty -m "start of [thing you're working on]"`
7070
3. Once you've pushed a commit, open a [**draft pull request**](https://github.blog/2019-02-14-introducing-draft-pull-requests/). Do this **before** you actually start working.
7171
4. Make your commits in small, incremental steps with clear descriptions.
7272
5. Tag a maintainer when you're done and ask for a review!
7373

7474
<h1 align="center">Further resources</h1>
7575

76-
- Several examples can be found in the [examples folder](https://github.com/Ultz/Silk.NET/tree/master/examples)
76+
- Several examples can be found in the [examples folder](https://github.com/dotnet/Silk.NET/tree/master/examples)
7777
- Come chat with us on [Discord](https://discord.gg/DTHHXRt)!
7878

7979
<h1 align="center">Licensing and governance</h1>

build/props/common.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
- Fix a build toolchain issue where packages released in Debug mode (#416)
1818
- Fix a string marshalling issue and OpenAL regression (#414)
1919
</PackageReleaseNotes>
20-
<PackageTags>OpenCL;OpenGL;OpenAL;OpenGLES;GLES;Vulkan;Assimp;DirectX;GLFW;SDL;Windowing;Input;Gamepad;Joystick;Keyboard;Mouse;SilkTouch;Source;Generator;C#;F#;.NET;DotNet;Mono;Vector;Math;Maths;Numerics;Game;Graphics;Compute;Audio;Sound;Engine;Silk;Silk.NET;Slim.NET;ElgarTK;GPU;Sharp;Science;Scientific;Visualization;Visual;Audiovisual;Windows;macOS;Linux;Android;Bindings;OSX;Wrapper;Native</PackageTags>
20+
<PackageTags Condition="'$(PackageTags)' == ''">OpenCL;OpenGL;OpenAL;OpenGLES;GLES;Vulkan;Assimp;DirectX;GLFW;SDL;Windowing;Input;Gamepad;Joystick;Keyboard;Mouse;SilkTouch;Source;Generator;C#;F#;.NET;DotNet;Mono;Vector;Math;Maths;Numerics;Game;Graphics;Compute;Audio;Sound;Engine;Silk;Silk.NET;Slim.NET;ElgarTK;GPU;Sharp;Science;Scientific;Visualization;Visual;Audiovisual;Windows;macOS;Linux;Android;Bindings;OSX;Wrapper;Native</PackageTags>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2222
<PackageOutputPath>$(MSBuildThisFileDirectory)/../output_packages</PackageOutputPath>
23-
<RepositoryUrl>https://github.com/Ultz/Silk.NET</RepositoryUrl>
23+
<RepositoryUrl>https://github.com/dotnet/Silk.NET</RepositoryUrl>
2424
<RepositoryType>Git</RepositoryType>
2525
<VersionPrefix>2.2.0</VersionPrefix>
2626
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
27-
<Description>
27+
<Description Condition="'$(Description)' == ''">
2828
Silk.NET is a high-speed, advanced library, providing bindings to popular low-level APIs such as OpenGL, OpenCL, OpenAL, OpenXR, GLFW, SDL, Vulkan, Assimp, and DirectX.
2929
</Description>
3030
</PropertyGroup>

src/Core/Silk.NET.SilkTouch/Diagnostics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Silk.NET.SilkTouch
88
internal static class Diagnostics
99
{
1010
private const string IssueLink =
11-
"https://github.com/Ultz/Silk.NET/issues/new?assignees=HurricanKai&labels=bug,area-SilkTouch";
11+
"https://github.com/dotnet/Silk.NET/issues/new?assignees=HurricanKai&labels=bug,area-SilkTouch";
1212

1313
public static DiagnosticDescriptor ProcessClassFailure { get; } = new DiagnosticDescriptor
1414
(

0 commit comments

Comments
 (0)