diff --git a/PlexRequests.Store/PlexRequests.Store.csproj b/PlexRequests.Store/PlexRequests.Store.csproj index 9e0b3ec67..95adcfc79 100644 --- a/PlexRequests.Store/PlexRequests.Store.csproj +++ b/PlexRequests.Store/PlexRequests.Store.csproj @@ -81,7 +81,9 @@ Always - + + Always + diff --git a/PlexRequests.sln b/PlexRequests.sln index 2bd22d2d1..57d56dcc4 100644 --- a/PlexRequests.sln +++ b/PlexRequests.sln @@ -16,6 +16,7 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F4BC839C-B8FF-48BE-B22E-536A0A0A81A5}" ProjectSection(SolutionItems) = preProject .travis.yml = .travis.yml + appveyor.yml = appveyor.yml LICENSE = LICENSE README.md = README.md EndProjectSection diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..470e29a78 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,17 @@ +version: 0.5.{build} +configuration: Release +assembly_info: + patch: true + file: '**\AssemblyInfo.*' + assembly_version: '{version}' + assembly_file_version: '{version}' + assembly_informational_version: '{version}' +before_build: +- cmd: appveyor-retry nuget restore +build: + verbosity: minimal +after_build: +- cmd: >- + 7z a PlexRequests.zip %APPVEYOR_BUILD_FOLDER%\PlexRequests.UI\bin\Release\ + + appveyor PushArtifact PlexRequests.zip \ No newline at end of file