Skip to content

Commit ca0bc39

Browse files
committed
Fix NuGet package url
1 parent 0bf1df9 commit ca0bc39

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/AlternateLife.RageMP.Net/AlternateLife.RageMP.Net.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<Authors>AlternateLife</Authors>
1010
<Description>Alternative RAGE Multiplayer .NET Core SDK</Description>
1111
<Copyright>2018 AlternateLife</Copyright>
12-
<PackageLicenseUrl>https://github.com/AlternateLife/ragemp-dotnet-core/blob/master/LICENSE</PackageLicenseUrl>
13-
<PackageProjectUrl>https://github.com/AlternateLife/ragemp-dotnet-core/</PackageProjectUrl>
12+
<PackageLicenseUrl>https://github.com/AlternateLife/RageMP.Net/blob/master/LICENSE</PackageLicenseUrl>
13+
<PackageProjectUrl>https://github.com/AlternateLife/RageMP.Net/</PackageProjectUrl>
1414
<RepositoryUrl>https://github.com/AlternateLife/ragemp-dotnet-core/</RepositoryUrl>
1515
<RepositoryType>git</RepositoryType>
1616
<PackageTags>ragemp gta bridge</PackageTags>

src/AlternateLife.RageMP.Net/Attributes/CommandAttribute.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class CommandAttribute : Attribute
77
{
88
public string Name { get; }
99

10-
public CommandAttribute(string name = default(string))
10+
public CommandAttribute(string name)
1111
{
1212
Name = name;
1313
}

0 commit comments

Comments
 (0)