File tree Expand file tree Collapse file tree 5 files changed +37
-4
lines changed
Expand file tree Collapse file tree 5 files changed +37
-4
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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" ;
You can’t perform that action at this time.
0 commit comments