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

Update Assembly info #4

Merged
merged 1 commit into from
Dec 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 7 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

image: Visual Studio 2017

skip_branch_with_pr: true

# Skipping commits affecting specific files
skip_commits:
files:
Expand Down Expand Up @@ -52,7 +54,7 @@

nuget restore source\nanoFramework.CoreLibrary.sln

gitversion /l console /output buildserver /updateAssemblyInfo /ensureassemblyinfo
gitversion /l console /output buildserver /updateAssemblyInfo AssemblyInfo2.cs /ensureassemblyinfo

build_script:
- ps: >-
Expand All @@ -76,6 +78,8 @@
api_key:
secure: NSRDXbS8tmzOy4wStGuO3yQMKI8Sk10vF8iQtz9ZDXEnHfwnuDdnXbr/Kno3MMvY
skip_symbols: true
on:
appveyor_repo_tag: true
- provider: GitHub
tag: v$(GitVersion_NuGetVersionV2)
release: nanoFramework Core Library v$(gitversion_semver)
Expand Down Expand Up @@ -143,7 +147,7 @@

nuget restore source\nanoFramework.CoreLibrary.sln

gitversion /l console /output buildserver /updateAssemblyInfo /ensureassemblyinfo
gitversion /l console /output buildserver /updateAssemblyInfo AssemblyInfo2.cs /ensureassemblyinfo

build_script:
- ps: >-
Expand Down Expand Up @@ -250,7 +254,7 @@

nuget restore source\nanoFramework.CoreLibrary.sln

gitversion /l console /output buildserver /updateAssemblyInfo /ensureassemblyinfo
gitversion /l console /output buildserver /updateAssemblyInfo AssemblyInfo2.cs /ensureassemblyinfo

build_script:
- ps: >-
Expand Down
7 changes: 7 additions & 0 deletions source/System/AssemblyInfo2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,10 @@
using System.Reflection;

[assembly: CLSCompliant(true)]
[assembly: AssemblyTitle("mscorlib")]
[assembly: AssemblyCompany("nanoFramework Contributors")]
[assembly: AssemblyProduct("nanoFramework mscorlib")]
[assembly: AssemblyCopyright("Copyright � nanoFramework Contributors 2017")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.0")]