Skip to content

Commit bf80c8a

Browse files
Update name to Multitool (#40)
Co-authored-by: Kevin B <[email protected]>
1 parent 0d4ba56 commit bf80c8a

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
run: dotnet test --no-build --configuration Release --verbosity normal
4343
- name: Pack
4444
if: startsWith(github.ref, 'refs/tags/v')
45-
run: dotnet pack -p:PackageVersion=${{ env.nugetVersion }} --configuration Release -o ${{env.DOTNET_ROOT}}/IntelliTect.UtilitiesPack --no-build
45+
run: dotnet pack -p:PackageVersion=${{ env.nugetVersion }} --configuration Release -o ${{env.DOTNET_ROOT}}/IntelliTect.MultitoolPack --no-build
4646
- name: Upload Artifacts
4747
if: startsWith(github.ref, 'refs/tags/v')
4848
uses: actions/upload-artifact@v2
4949
with:
5050
name: NuGet
51-
path: ${{env.DOTNET_ROOT}}/IntelliTect.UtilitiesPack
51+
path: ${{env.DOTNET_ROOT}}/IntelliTect.MultitoolPack
5252

5353
deploy:
5454
if: startsWith(github.ref, 'refs/tags/v')
@@ -65,11 +65,11 @@ jobs:
6565
run: |
6666
$tagVersion = "${{ github.ref }}".substring(11)
6767
echo '::set-output name=TAG_VERSION::$tagVersion'
68-
dotnet nuget push IntelliTect.Utilities.$tagVersion.nupkg --source https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }} --skip-duplicate
68+
dotnet nuget push IntelliTect.Multitool.$tagVersion.nupkg --source https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }} --skip-duplicate
6969
id: tag-version
7070
- name: Upload nupkg to Releases
7171
uses: softprops/action-gh-release@v1
7272
with:
7373
fail_on_unmatched_files: true
7474
generate_release_notes: true
75-
files: IntelliTect.Utilities.${{ steps.tag-version.outputs.TAG_VERSION }}.nupkg
75+
files: IntelliTect.Multitool.${{ steps.tag-version.outputs.TAG_VERSION }}.nupkg

IntelliTect.Utilities.Tests/ClaimsPrincipalGetRolesTests.cs renamed to IntelliTect.Multitool.Tests/ClaimsPrincipalGetRolesTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
22
using System.Security.Claims;
33
using System.Security.Principal;
4-
using IntelliTect.Utilities.Security;
4+
using IntelliTect.Multitool.Security;
55
using Xunit;
66

7-
namespace IntelliTect.Utilities.Tests
7+
namespace IntelliTect.Multitool.Tests
88
{
99
public class ClaimsPrincipalGetRolesTests
1010
{

IntelliTect.Utilities.Tests/ClaimsPrincipalGetUserIdTests.cs renamed to IntelliTect.Multitool.Tests/ClaimsPrincipalGetUserIdTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
22
using System.Security.Claims;
33
using System.Security.Principal;
4-
using IntelliTect.Utilities.Security;
4+
using IntelliTect.Multitool.Security;
55
using Xunit;
66

7-
namespace IntelliTect.Utilities.Tests
7+
namespace IntelliTect.Multitool.Tests
88
{
99
public class ClaimsPrincipalGetUserIdTests
1010
{

IntelliTect.Utilities.Tests/IntelliTect.Utilities.Tests.csproj renamed to IntelliTect.Multitool.Tests/IntelliTect.Multitool.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<ProjectReference Include="..\IntelliTect.Utilities\IntelliTect.Utilities.csproj" />
21+
<ProjectReference Include="..\IntelliTect.Multitool\IntelliTect.Multitool.csproj" />
2222
</ItemGroup>
2323

2424
</Project>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.3.32825.248
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntelliTect.Utilities", "IntelliTect.Utilities\IntelliTect.Utilities.csproj", "{4AEDF7B5-8FD1-4361-B230-173646A0D20C}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntelliTect.Multitool", "IntelliTect.Multitool\IntelliTect.Multitool.csproj", "{4AEDF7B5-8FD1-4361-B230-173646A0D20C}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntelliTect.Utilities.Tests", "IntelliTect.Utilities.Tests\IntelliTect.Utilities.Tests.csproj", "{B0281AA3-FAED-4A2C-8C5A-C2F3DC39511A}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntelliTect.Multitool.Tests", "IntelliTect.Multitool.Tests\IntelliTect.Multitool.Tests.csproj", "{B0281AA3-FAED-4A2C-8C5A-C2F3DC39511A}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7FB66610-EB11-460E-8CC8-F49044F452D0}"
1111
ProjectSection(SolutionItems) = preProject
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.IO;
33
using System.Reflection;
44

5-
namespace IntelliTect.Utilities
5+
namespace IntelliTect.Multitool
66
{
77
/// <summary>
88
/// Information about the executing assembly.
File renamed without changes.

IntelliTect.Utilities/IntelliTect.Utilities.csproj renamed to IntelliTect.Multitool/IntelliTect.Multitool.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<Authors>IntelliTect</Authors>
1111
<Description>A utility library for IntelliTect</Description>
1212
<Copyright>Copyright © IntelliTect 2019</Copyright>
13-
<PackageProjectUrl>https://github.com/IntelliTect/Utilities</PackageProjectUrl>
14-
<RepositoryUrl>https://github.com/IntelliTect/Utilities</RepositoryUrl>
13+
<PackageProjectUrl>https://github.com/IntelliTect/Multitool</PackageProjectUrl>
14+
<RepositoryUrl>https://github.com/IntelliTect/Multitool</RepositoryUrl>
1515
<RepositoryType>Git</RepositoryType>
16-
<PackageTags>IntelliTect Utilities</PackageTags>
16+
<PackageTags>IntelliTect, Utilities, Multitool</PackageTags>
1717
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1818
<RepositoryType>git</RepositoryType>
1919
<PublishRepositoryUrl>true</PublishRepositoryUrl>
File renamed without changes.

IntelliTect.Utilities/Security/ClaimsPrincipalExtensions.cs renamed to IntelliTect.Multitool/Security/ClaimsPrincipalExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Security.Claims;
55

6-
namespace IntelliTect.Utilities.Security
6+
namespace IntelliTect.Multitool.Security
77
{
88
/// <summary>
99
/// Gets information from a <see cref="ClaimsPrincipal"/>

0 commit comments

Comments
 (0)