Skip to content
This repository has been archived by the owner on Jan 7, 2021. It is now read-only.

Commit

Permalink
Added package spec and appveyor configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
AraHaan committed Sep 11, 2018
1 parent f279bb5 commit 80c3f04
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyTitle("XmlAbstraction")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("AraHaan")]
[assembly: AssemblyProduct("XmlAbstraction")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
Expand All @@ -38,3 +38,4 @@
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.0")]
5 changes: 5 additions & 0 deletions XmlAbstraction.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@
<Compile Include="XmlObject.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NuGet.CommandLine">
<Version>4.7.1</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers">
<Version>1.1.0-beta009</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
17 changes: 17 additions & 0 deletions XmlAbstraction.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>XmlAbstraction</title>
<authors>AraHaan</authors>
<owners>AraHaan</owners>
<licenseUrl>https://github.com/AraHaan/XmlAbstraction/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/AraHaan/XmlAbstraction/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A library that contains a System.Xml and System.Xml.Linq abstraction class.</description>
<releaseNotes>Initial release.</releaseNotes>
<copyright>Copyright 2018</copyright>
<tags>XML</tags>
</metadata>
</package>
22 changes: 22 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 1.0.0.0-alpha{build}
branches:
only:
- master
max_jobs: 15
image: Visual Studio 2017
configuration: Release
platform: Any CPU
build:
project: XmlAbstraction.sln
publish_nuget: true
publish_nuget_symbols: true
include_nuget_references: true
parallel: true
verbosity: minimal
test: off
deploy:
- provider: NuGet
api_key:
secure: w8jKLcMWVbTVBRRjl6k2eoRvajr5DpIB4XBhlEddCvx/9dSnDYbK5J0qXZXazE/E
on:
APPVEYOR_REPO_TAG: true

0 comments on commit 80c3f04

Please sign in to comment.