Skip to content

Commit b458903

Browse files
committed
added appveyor and fixed assembly name
1 parent 2d277c9 commit b458903

File tree

5 files changed

+37
-4
lines changed

5 files changed

+37
-4
lines changed

WixSharp/Services/Authorization/AuthorizationService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class AuthorizationService
1717
{
1818
private static readonly Regex _querystringRegex = new Regex(@"[?|&]([\w\.]+)=([^?|^&]+)", RegexOptions.Compiled);
1919

20-
/// <remarks>
20+
/// <remarks>
2121
/// Source for this method: https://stackoverflow.com/a/22046389
2222
/// </remarks>
2323
public static IDictionary<string, string> ParseRawQuerystring(string qs)

WixSharp/Services/InventoryItem/InventoryItemService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ public class InventoryItemService : WixService
1313
/// <summary>
1414
/// Creates a new instance of <see cref="InventoryItemService" />.
1515
/// </summary>
16-
/// <param name="myWixUrl">The wix URL.</param>
1716
/// <param name="shopAccessToken">An API access token for the shop.</param>
1817
public InventoryItemService(string shopAccessToken) : base(shopAccessToken)
1918
{

WixSharp/WixSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>netcoreapp2.1;netstandard1.4;</TargetFrameworks>
4-
<AssemblyName>WixSharp</AssemblyName>
4+
<AssemblyName>PrimePenguin.WixSharp</AssemblyName>
55
<RootNamespace>WixSharp</RootNamespace>
66
<Version>0.0.1</Version>
77
</PropertyGroup>

appveyor.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: 4.0.{build}
2+
image: Visual Studio 2017
3+
build_script:
4+
- ps: ./scripts/build.ps1
5+
environment:
6+
APPVEYOR_REPO_TAG: true
7+
artifacts:
8+
- path: WixSharp/bin/Release/netstandard1.4
9+
name: netstandard16
10+
- path: WixSharp/bin/Release/net45
11+
name: net461
12+
skip_commits:
13+
message: /\[skip\]/
14+
files:
15+
- readme.md
16+
- LICENSE
17+
- .gitignore
18+
- .vscode/*
19+
- changelog.md
20+
deploy:
21+
- provider: NuGet
22+
api_key:
23+
secure: Fq9bETTEgKcrrqXvHgb2ysWyKkuuvR0akA2QNjxwcr3O4RprOXKr/bor2NpNzMjU
24+
on:
25+
branch: master
26+
- provider: GitHub
27+
appveyor_repo_tag: true
28+
tag: $(APPVEYOR_REPO_TAG_NAME)
29+
description: "Automated AppVeyor release for WixSharp v$(APPVEYOR_REPO_TAG_NAME)."
30+
auth_token:
31+
secure: rUdMlXxmA59ftJKv2pnCXtgwYhZf2xqyFl0iuAvf6qylYCjM3aF8klLN+711LFV5
32+
artifact: PrimePenguin.WixSharp.nupkg
33+
on:
34+
branch: master

scripts/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ dotnet pack --no-build -c Release WixSharp/WixSharp.csproj;
55
$nupkg = (Get-ChildItem WixSharp/bin/Release/*.nupkg)[0];
66

77
# Push the nuget package to AppVeyor's artifact list.
8-
Push-AppveyorArtifact $nupkg.FullName -FileName $nupkg.Name -DeploymentName "WixSharp.nupkg";
8+
Push-AppveyorArtifact $nupkg.FullName -FileName $nupkg.Name -DeploymentName "PrimePenguin.WixSharp.nupkg";

0 commit comments

Comments
 (0)