Skip to content

Commit f503e96

Browse files
committed
use ArxOne namespace
1 parent c7f3670 commit f503e96

137 files changed

Lines changed: 1930 additions & 1923 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/continuous.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@ jobs:
2222
.nuke/temp
2323
~/.nuget/packages
2424
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
25-
- name: 'Run: Pack'
26-
run: ./build.cmd Pack
25+
- name: 'Run: Push'
26+
shell: pwsh
27+
run: ./build.ps1 Push --FeedUri "${{ env.FEED_URI }}"
28+
env:
29+
NuGetApiKey: ${{ secrets.NUGET_API_KEY }}
30+
FEED_URI: "https://api.nuget.org/v3/index.json"
2731
- name: 'Publish: artifacts'
2832
uses: actions/upload-artifact@v5
2933
with:
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
4-
<id>AlphaVSS.Native.NetCore</id>
4+
<id>ArxOne.AlphaVSS.Native.NetCore</id>
55
<version>1.0.0</version>
66
<title>AlphaVSS.Native.NetCore</title>
7-
<authors>alphaleonis</authors>
7+
<authors>ArxOne</authors>
88
<license type="expression">Apache-2.0</license>
9-
<projectUrl>https://alphavss.alphaleonis.com/</projectUrl>
9+
<projectUrl>https://github.com/ArxOne/AlphaVSS</projectUrl>
1010
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1111
<description>
1212
A package containing the native binaries for AlphaVSS targetting .NET Framework.
1313
Do not install this package manually, it will be added as a prerequisite by the AlphaVSS package when required.
1414
</description>
1515
<copyright>Copyright © Peter Palotas</copyright>
1616
<tags>Win32, VSS</tags>
17-
<repository type="git" url="https://github.com/alphaleonis/AlphaVSS.git" branch="$branch$" commit="$commit$" />
17+
<repository type="git" url="https://github.com/ArxOne/AlphaVSS.git" branch="$branch$" commit="$commit$" />
1818
<dependencies>
1919
<group targetFramework="netcoreapp3.1" />
2020
</dependencies>
@@ -26,5 +26,7 @@ Do not install this package manually, it will be added as a prerequisite by the
2626
<file src="..\..\artifacts\netcoreapp3.1\x86\Ijwhost.dll" target="runtimes\win-x86\native" />
2727
<file src="..\..\artifacts\netcoreapp3.1\x64\AlphaVSS.x64.dll" target="runtimes\win-x64\native" />
2828
<file src="..\..\artifacts\netcoreapp3.1\x64\Ijwhost.dll" target="runtimes\win-x64\native" />
29+
<file src="..\..\artifacts\netcoreapp3.1\arm64\AlphaVSS.arm64.dll" target="runtimes\win-arm64\native" />
30+
<file src="..\..\artifacts\netcoreapp3.1\arm64\Ijwhost.dll" target="runtimes\win-arm64\native" />
2931
</files>
3032
</package>
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
4-
<id>AlphaVSS.Native.NetFx</id>
4+
<id>ArxOne.AlphaVSS.Native.NetFx</id>
55
<version>1.0.0</version>
66
<title>AlphaVSS.Native.NetFx</title>
7-
<authors>alphaleonis</authors>
7+
<authors>ArxOne</authors>
88
<license type="expression">Apache-2.0</license>
9-
<projectUrl>https://alphavss.alphaleonis.com/</projectUrl>
9+
<projectUrl>https://github.com/ArxOne/AlphaVSS</projectUrl>
1010
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1111
<description>A package containing the native binaries for AlphaVSS targetting .NET Framework.
1212
Do not install this package manually, it will be added as a prerequisite by the AlphaVSS package when required.</description>
1313
<copyright>Copyright © Peter Palotas</copyright>
1414
<tags>Win32, VSS</tags>
15-
<repository type="git" url="https://github.com/alphaleonis/AlphaVSS.git" branch="$branch$" commit="$commit$" />
15+
<repository type="git" url="https://github.com/ArxOne/AlphaVSS.git" branch="$branch$" commit="$commit$" />
1616
<dependencies>
1717
<group targetFramework="net45" />
1818
</dependencies>
@@ -22,6 +22,7 @@ Do not install this package manually, it will be added as a prerequisite by the
2222
<file src="_._" target="lib\net45" />
2323
<file src="..\..\artifacts\net45\x86\AlphaVSS.x86.dll" target="build\net45" />
2424
<file src="..\..\artifacts\net45\x64\AlphaVSS.x64.dll" target="build\net45" />
25+
<file src="..\..\artifacts\net45\arm64\AlphaVSS.arm64.dll" target="build\net45" />
2526
<file src="AlphaVSS.Native.NetFx.targets" target="build\net45" />
2627
</files>
2728
</package>

build/nuget/AlphaVSS.nuspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44
<id>AlphaVSS</id>
55
<version>1.0.0</version>
66
<title>AlphaVSS</title>
7-
<authors>alphaleonis</authors>
7+
<authors>ArxOne</authors>
88
<license type="expression">Apache-2.0</license>
9-
<projectUrl>https://alphavss.alphaleonis.com/</projectUrl>
9+
<projectUrl>https://github.com/ArxOne/AlphaVSS</projectUrl>
1010
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1111
<description>AlphaVSS is a .NET class library providing a managed API for the Windows Volume Shadow Copy Service also known as VSS.</description>
1212
<releaseNotes>- Added support for .NET Core 3.1.
1313
- Added TPL style async methods for asynchronous methods on IVssBackupComponents.</releaseNotes>
1414
<copyright>Copyright © Peter Palotas</copyright>
1515
<tags>Win32, VSS</tags>
16-
<repository type="git" url="https://github.com/alphaleonis/AlphaVSS.git" branch="$branch$" commit="$commit$" />
16+
<repository type="git" url="https://github.com/ArxOne/AlphaVSS.git" branch="$branch$" commit="$commit$" />
1717
<dependencies>
1818
<group targetFramework="net45">
19-
<dependency id="AlphaVSS.Native.NetFx" version="[$version$]" />
19+
<dependency id="ArxOne.AlphaVSS.Native.NetFx" version="[$version$]" />
2020
</group>
2121
<group targetFramework="netcoreapp3.1" >
22-
<dependency id="AlphaVSS.Native.NetCore" version="[$version$]" />
22+
<dependency id="ArxOne.AlphaVSS.Native.NetCore" version="[$version$]" />
2323
</group>
2424
</dependencies>
2525
</metadata>

src/AlphaVSS.Common/AlphaVSS.Common.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Import Project="..\AlphaVSS.props" />
1010
<PropertyGroup>
1111
<Title>AlphaVSS.Common</Title>
12-
<Description>Alphaleonis Windows Volume Shadow Copy .NET Common Library</Description>
12+
<Description>ArxOne Windows Volume Shadow Copy .NET Common Library</Description>
1313
<Copyright>Copyright (C) Peter Palotas</Copyright>
1414
<Authors>Peter Palotas</Authors>
1515
<Product>AlphaVSS</Product>
@@ -19,7 +19,7 @@
1919
<NeutralLanguage>en-US</NeutralLanguage>
2020
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2121
<OutputPath>..\..\artifacts</OutputPath>
22-
<RootNamespace>Alphaleonis.Win32.Vss</RootNamespace>
22+
<RootNamespace>ArxOne.Win32.Vss</RootNamespace>
2323
<ApplicationIcon />
2424
<Win32Resource />
2525
</PropertyGroup>
@@ -49,4 +49,4 @@
4949
<LastGenOutput>LocalizedStrings.Designer.cs</LastGenOutput>
5050
</EmbeddedResource>
5151
</ItemGroup>
52-
</Project>
52+
</Project>

0 commit comments

Comments
 (0)