From 2315a46440d0d2af8c3f2818a052a0ed14b6906b Mon Sep 17 00:00:00 2001 From: Rutherther Date: Tue, 31 Jan 2023 15:21:15 +0100 Subject: [PATCH] chore: move repository url and license to Directory.Build.props --- Core/NosSmooth.Core/NosSmooth.Core.csproj | 2 -- Core/NosSmooth.Game/NosSmooth.Game.csproj | 2 -- .../NosSmooth.Data.Abstractions.csproj | 2 -- Data/NosSmooth.Data.Database/NosSmooth.Data.Database.csproj | 2 -- Data/NosSmooth.Data.NOSFiles/NosSmooth.Data.NOSFiles.csproj | 2 -- Directory.Build.props | 6 ++++++ .../NosSmooth.Extensions.Combat.csproj | 2 -- .../NosSmooth.Extensions.Pathfinding.csproj | 2 -- .../NosSmooth.PacketSerializer.Abstractions.csproj | 2 -- .../NosSmooth.PacketSerializer.csproj | 2 -- .../NosSmooth.PacketSerializersGenerator.csproj | 2 -- Packets/NosSmooth.Packets/NosSmooth.Packets.csproj | 2 -- 12 files changed, 6 insertions(+), 22 deletions(-) diff --git a/Core/NosSmooth.Core/NosSmooth.Core.csproj b/Core/NosSmooth.Core/NosSmooth.Core.csproj index 93f227a..b9f04da 100644 --- a/Core/NosSmooth.Core/NosSmooth.Core.csproj +++ b/Core/NosSmooth.Core/NosSmooth.Core.csproj @@ -6,8 +6,6 @@ net7.0;netstandard2.1 Rutherther NosSmooth Core library allowing implementing nostale client, handling packets and commands. - https://github.com/Rutherther/NosSmooth/ - MIT 3.3.1 Add contract reached state. Avoid deadlocks. diff --git a/Core/NosSmooth.Game/NosSmooth.Game.csproj b/Core/NosSmooth.Game/NosSmooth.Game.csproj index d884a97..203efc8 100644 --- a/Core/NosSmooth.Game/NosSmooth.Game.csproj +++ b/Core/NosSmooth.Game/NosSmooth.Game.csproj @@ -6,8 +6,6 @@ 10 net7.0 NosSmooth Game library handling the current game state by responding to packets. - https://github.com/Rutherther/NosSmooth/ - MIT 2.4.2 Remove passives from player skills. Change position of caster when receiving su packet. diff --git a/Data/NosSmooth.Data.Abstractions/NosSmooth.Data.Abstractions.csproj b/Data/NosSmooth.Data.Abstractions/NosSmooth.Data.Abstractions.csproj index ca0a01f..ac1c9ed 100644 --- a/Data/NosSmooth.Data.Abstractions/NosSmooth.Data.Abstractions.csproj +++ b/Data/NosSmooth.Data.Abstractions/NosSmooth.Data.Abstractions.csproj @@ -5,8 +5,6 @@ enable Nos smooth's abstractions for information from NosTale data files. 10 - https://github.com/Rutherther/NosSmooth/ - MIT 2.2.1 net7.0 Add skill morph, special cost, upgrade, dash speed, item vnum. diff --git a/Data/NosSmooth.Data.Database/NosSmooth.Data.Database.csproj b/Data/NosSmooth.Data.Database/NosSmooth.Data.Database.csproj index 4238333..c97888a 100644 --- a/Data/NosSmooth.Data.Database/NosSmooth.Data.Database.csproj +++ b/Data/NosSmooth.Data.Database/NosSmooth.Data.Database.csproj @@ -5,8 +5,6 @@ enable Nos smooth's database implementation of NosTale data using EF core. 10 - https://github.com/Rutherther/NosSmooth/ - MIT 2.1.1 net7.0 Add skill morph, special cost, upgrade, dash speed, item vnum. diff --git a/Data/NosSmooth.Data.NOSFiles/NosSmooth.Data.NOSFiles.csproj b/Data/NosSmooth.Data.NOSFiles/NosSmooth.Data.NOSFiles.csproj index 2acf978..41e471b 100644 --- a/Data/NosSmooth.Data.NOSFiles/NosSmooth.Data.NOSFiles.csproj +++ b/Data/NosSmooth.Data.NOSFiles/NosSmooth.Data.NOSFiles.csproj @@ -5,8 +5,6 @@ enable Nos smooth's NosTale data implementation using .NOS files. 10 - https://github.com/Rutherther/NosSmooth/ - MIT 2.2.2 Add skill morph, special cost, upgrade, dash speed, item vnum. net7.0 diff --git a/Directory.Build.props b/Directory.Build.props index 8707651..5d7d7bb 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -11,6 +11,12 @@ $(StyleCopRuleset) + + https://github.com/Rutherther/NosSmooth + main + https://github.com/Rutherther/NosSmooth + + all diff --git a/Extensions/NosSmooth.Extensions.Combat/NosSmooth.Extensions.Combat.csproj b/Extensions/NosSmooth.Extensions.Combat/NosSmooth.Extensions.Combat.csproj index d4e4664..2823905 100644 --- a/Extensions/NosSmooth.Extensions.Combat/NosSmooth.Extensions.Combat.csproj +++ b/Extensions/NosSmooth.Extensions.Combat/NosSmooth.Extensions.Combat.csproj @@ -7,8 +7,6 @@ net7.0 1.2.0 Manages NosSmooth combat state, currently exposing a simple technique to kill one enemy at a time. - https://github.com/Rutherther/NosSmooth/ - MIT diff --git a/Extensions/NosSmooth.Extensions.Pathfinding/NosSmooth.Extensions.Pathfinding.csproj b/Extensions/NosSmooth.Extensions.Pathfinding/NosSmooth.Extensions.Pathfinding.csproj index ad333e4..c428f02 100644 --- a/Extensions/NosSmooth.Extensions.Pathfinding/NosSmooth.Extensions.Pathfinding.csproj +++ b/Extensions/NosSmooth.Extensions.Pathfinding/NosSmooth.Extensions.Pathfinding.csproj @@ -5,8 +5,6 @@ enable enable NosSmooth extension for finding paths and walking found paths. - https://github.com/Rutherther/NosSmooth/ - MIT NosSmooth extension allowing for finding paths on maps. 1.2.0 React to su and tp packet by changing character position. diff --git a/Packets/NosSmooth.PacketSerializer.Abstractions/NosSmooth.PacketSerializer.Abstractions.csproj b/Packets/NosSmooth.PacketSerializer.Abstractions/NosSmooth.PacketSerializer.Abstractions.csproj index f955f1d..9b78a66 100644 --- a/Packets/NosSmooth.PacketSerializer.Abstractions/NosSmooth.PacketSerializer.Abstractions.csproj +++ b/Packets/NosSmooth.PacketSerializer.Abstractions/NosSmooth.PacketSerializer.Abstractions.csproj @@ -5,8 +5,6 @@ enable 10 NosSmooth's packet serializer abstractions that hold all interfaces, classes, errors needed for creating assemblies with packets that can have generated serializers. - https://github.com/Rutherther/NosSmooth/ - MIT 1.3.1 net7.0;netstandard2.1 Add IsOnSeparator method to PacketStringEnumerator. diff --git a/Packets/NosSmooth.PacketSerializer/NosSmooth.PacketSerializer.csproj b/Packets/NosSmooth.PacketSerializer/NosSmooth.PacketSerializer.csproj index 5d4c89d..1800af6 100644 --- a/Packets/NosSmooth.PacketSerializer/NosSmooth.PacketSerializer.csproj +++ b/Packets/NosSmooth.PacketSerializer/NosSmooth.PacketSerializer.csproj @@ -6,8 +6,6 @@ NosSmooth.PacketSerializer net7.0;netstandard2.1 NosSmooth's packet string serializer implementation. - https://github.com/Rutherther/NosSmooth/ - MIT 2.2.6 Fix parsing upgrade rare sub packet -1. diff --git a/Packets/NosSmooth.PacketSerializersGenerator/NosSmooth.PacketSerializersGenerator.csproj b/Packets/NosSmooth.PacketSerializersGenerator/NosSmooth.PacketSerializersGenerator.csproj index 3a62c11..9c71f3c 100644 --- a/Packets/NosSmooth.PacketSerializersGenerator/NosSmooth.PacketSerializersGenerator.csproj +++ b/Packets/NosSmooth.PacketSerializersGenerator/NosSmooth.PacketSerializersGenerator.csproj @@ -10,8 +10,6 @@ NosSmooth's source code generator that generates serializers for packets. false 1.1.1 - https://github.com/Rutherther/NosSmooth/ - MIT Add support for multiple separators. diff --git a/Packets/NosSmooth.Packets/NosSmooth.Packets.csproj b/Packets/NosSmooth.Packets/NosSmooth.Packets.csproj index 46452e5..3f704c6 100644 --- a/Packets/NosSmooth.Packets/NosSmooth.Packets.csproj +++ b/Packets/NosSmooth.Packets/NosSmooth.Packets.csproj @@ -5,8 +5,6 @@ enable 10 Contains default NosTale packets. - https://github.com/Rutherther/NosSmooth/ - MIT 3.5.1 net7.0;netstandard2.1 Put correct (list) attribute to Pst packet Effects. -- 2.49.0