Skip to content

Commit e36095d

Browse files
authored
Fix doc urls (#147)
* fix URL's * also root readme for nuget
1 parent 0bd03d4 commit e36095d

File tree

4 files changed

+12
-20
lines changed

4 files changed

+12
-20
lines changed

MetaInfo/NuGetReadme/README.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Nuget](https://img.shields.io/nuget/v/GmodNET.API?color=blue)](https://www.nuget.org/packages/GmodNET.API/) [![Downloads](https://img.shields.io/nuget/dt/GmodNET.API?color=2db94e)](https://www.nuget.org/packages/GmodNET.API/) [![Discord Server](https://img.shields.io/discord/632622505848471554?label=Our%20Discord&color=2db94e)](https://discord.gg/9bP8nMT)
2-
[![CI](https://github.com/GlebChili/GmodDotNet/workflows/CI/badge.svg?branch=master)](https://github.com/GlebChili/GmodDotNet/actions?query=workflow%3ACI)
2+
[![CI](https://github.com/GmodNET/GmodDotNet/workflows/CI/badge.svg?branch=main)](https://github.com/GmodNET/GmodDotNet/actions?query=workflow%3ACI)
33

44
# Gmod.NET
55

@@ -60,7 +60,7 @@ You can find latest nightly builds of Gmod.NET runtime at http://nightly.gmodnet
6060

6161
## Installation and usage
6262

63-
1. Download latest build from the project's [releases page](https://github.com/GlebChili/GmodDotNet/releases).
63+
1. Download latest build from the project's [releases page](https://github.com/GmodNET/GmodDotNet/releases).
6464

6565
2. Unpack archive for your OS to the `%GARRYS_MOD_ROOT_FOLDER%garrysmod/lua/bin/` folder.
6666

csx/discord-webhook.csx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ DiscordMessage msg = new DiscordMessage
3434
type = "rich",
3535
title = "Nightly build of `GmodDotNet` for `" + branch + "` commit `" + commit.Substring(0, 7) + "`",
3636
description = discord_text,
37-
url = "https://github.com/GlebChili/GmodDotNet/commit/" + commit,
37+
url = "https://github.com/GmodNET/GmodDotNet/commit/" + commit,
3838
color = 65530
3939
}
4040
}

gm_dotnet_managed/GmodNET.API/GmodNET.API.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
2222
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
2323
<EmbedUntrackedSources>true</EmbedUntrackedSources>
24+
<PackageReadmeFile>README.md</PackageReadmeFile>
2425
</PropertyGroup>
2526

2627
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
@@ -31,7 +32,7 @@
3132
<PackageReference Include="GmodNET.VersionTool.MSBuild" Version="2.1.0">
3233
<PrivateAssets>all</PrivateAssets>
3334
</PackageReference>
34-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
35+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
3536
<InternalsVisibleTo Include="GmodNET" />
3637
</ItemGroup>
3738

@@ -40,4 +41,11 @@
4041
<Content Include="../../MetaInfo/Logo/gmodnetlogo.png" PackagePath="/" />
4142
</ItemGroup>
4243

44+
<ItemGroup>
45+
<None Include="..\..\README.md">
46+
<Pack>True</Pack>
47+
<PackagePath>\</PackagePath>
48+
</None>
49+
</ItemGroup>
50+
4351
</Project>

0 commit comments

Comments
 (0)