-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove nuproj projects and replace with plain nuspec files. - Update AppVeyor yaml accordingly. - Replace gitversion with Nerdbank.GitVersioning. - Rework update dependencies PS to update nuspec instead of nuproj. Signed-off-by: José Simões <jose.simoes@eclo.solutions>
- Loading branch information
1 parent
a64ed55
commit 740e72c
Showing
15 changed files
with
163 additions
and
206 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 0 additions & 66 deletions
66
source/Nuget.CoreLibrary.DELIVERABLES/Nuget.CoreLibrary.DELIVERABLES.nuproj
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>nanoFramework.CoreLibrary.DELIVERABLES</id> | ||
<version>$version$</version> | ||
<title>nanoFramework.CoreLibrary.DELIVERABLES</title> | ||
<authors>nanoFramework project contributors</authors> | ||
<owners>nanoFramework project contributors</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<releaseNotes></releaseNotes> | ||
<developmentDependency>false</developmentDependency> | ||
<projectUrl>https://github.com/nanoframework/lib-CoreLibrary</projectUrl> | ||
<iconUrl>https://secure.gravatar.com/avatar/97d0e092247f0716db6d4b47b7d1d1ad</iconUrl> | ||
<copyright>Copyright (c) 2018 The nanoFramework project contributors</copyright> | ||
<description>** DON'T REFERENCE THIS PACKAGE ** Not meant for development. This package includes the deliverable artifacts of the base class library (mscorlib) of nanoFramework. These are for testing purposes and for updating the native code base of the core library.</description> | ||
<summary>nanoFramework.CoreLibrary.DELIVERABLES is not meant for development</summary> | ||
<tags></tags> | ||
</metadata> | ||
<files> | ||
<file src="nanoFramework.CoreLibrary\bin\Release\Stubs\*.*" target="content\Stubs\" /> | ||
<file src="nanoFramework.CoreLibrary\obj\Release\*.txt" target="content\txt\" /> | ||
<file src="nanoFramework.CoreLibrary\obj\Release\*.dump" target="content\dump\" /> | ||
<file src="nanoFramework.CoreLibrary\obj\Release\*.strings" target="content\dump\" /> | ||
<file src="nanoFramework.CoreLibrary\obj\Release\*.resources" target="content\resources\" /> | ||
<file src="nanoFramework.CoreLibrary\obj\Release\*.il" target="content\disasm\" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>nanoFramework.CoreLibrary</id> | ||
<version>$version$</version> | ||
<title>nanoFramework.CoreLibrary</title> | ||
<authors>nanoFramework project contributors</authors> | ||
<owners>nanoFramework project contributors</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<releaseNotes></releaseNotes> | ||
<developmentDependency>false</developmentDependency> | ||
<projectUrl>https://github.com/nanoframework/lib-CoreLibrary</projectUrl> | ||
<iconUrl>https://secure.gravatar.com/avatar/97d0e092247f0716db6d4b47b7d1d1ad</iconUrl> | ||
<copyright>Copyright (c) 2018 The nanoFramework project contributors</copyright> | ||
<description>This package includes the nanoFramework.CoreLibrary assembly for nanoFramework C# projects.</description> | ||
<summary>This package includes the nanoFramework.CoreLibrary assembly for nanoFramework C# projects.</summary> | ||
<tags>nanoFramework C# csharp netmf netnf nanoFramework.CoreLibrary</tags> | ||
</metadata> | ||
<files> | ||
<file src="nanoFramework.CoreLibrary\bin\Release\mscorlib.dll" target="lib\mscorlib.dll" /> | ||
<file src="nanoFramework.CoreLibrary\bin\Release\mscorlib.pdb" target="lib\mscorlib.pdb" /> | ||
<file src="nanoFramework.CoreLibrary\bin\Release\mscorlib.pdbx" target="lib\mscorlib.pdbx" /> | ||
<file src="nanoFramework.CoreLibrary\bin\Release\mscorlib.pe" target="lib\mscorlib.pe" /> | ||
<file src="nanoFramework.CoreLibrary\bin\Release\mscorlib.xml" target="lib\mscorlib.xml" /> | ||
</files> | ||
</package> |
Oops, something went wrong.