Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Converted to .NET Standard 2.0 #3

Merged
merged 5 commits into from
Jan 8, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix appveyor pack issues.
  • Loading branch information
PDQDakota committed Jan 2, 2020
commit 4ec16d48d0b1de3eb5a7dfe9902193f11cca313a
1 change: 1 addition & 0 deletions FluentSim/FluentSim.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<IsPackable>true</IsPackable>
<TargetFramework>netstandard2.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<LangVersion>latest</LangVersion>
Expand Down
29 changes: 4 additions & 25 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,30 +78,8 @@ dotnet_csproj:
# build configuration #
#---------------------------------#

# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: Any CPU

# to add several platforms to build matrix:
#platform:
# - x86
# - Any CPU

# build Configuration, i.e. Debug, Release, etc.
configuration: Release

# to add several configurations to build matrix:
#configuration:
# - Debug
# - Release

build:
parallel: true # enable MSBuild parallel builds
project: FluentSim.sln # path to Visual Studio solution or project
publish_nuget: true # package projects with .nuspec files and push to artifacts
publish_nuget_symbols: true # generate and publish NuGet symbol packages

# MSBuild verbosity level
verbosity: normal
build_script:
- ps: dotnet build ".\FluentSim\FluentSim.csproj" --configuration Release --verbosity detailed

#---------------------------------#
# tests configuration #
Expand Down Expand Up @@ -134,9 +112,10 @@ deploy:
# server: https://my.nuget.server/feed
api_key:
secure: HMp6b4NigywSudx9+nVIr2gZaQWUdiOkUQE3jKQ7ung0Pwb/5Qcy8KA1HeZXywGw
artifact: 'FluentSim\bin\Release\FluentSim.{version}.nupkg'
# skip_symbols: false
# symbol_server: https://your.symbol.server/feed
# Deploy to GitHub Releases
# Deploy to GitHub Releases
#- provider: GitHub
# artifact: /.*\.nupkg/ # upload all NuGet packages to release assets
# draft: false
Expand Down