Skip to content

Commit abbd0f9

Browse files
authored
NuGet package now contains Core DLL instead of Console app (#14)
1 parent 8b33664 commit abbd0f9

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
- task: NuGetCommand@2
116116
inputs:
117117
command: 'custom'
118-
arguments: 'pack source\MetadataProcessor.Console\package.nuspec -Version $(NBGV_NuGetPackageVersion)'
118+
arguments: 'pack source\MetadataProcessor.Core\package.nuspec -Version $(NBGV_NuGetPackageVersion)'
119119
condition: succeeded()
120120
displayName: Pack NuGet for MDP tool
121121

source/MetadataProcessor.Console/package.nuspec renamed to source/MetadataProcessor.Core/package.nuspec

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>nanoFramework.Tools.MetadataProcessor</id>
5-
<title>nanoFramework.Tools.MetadataProcessor</title>
4+
<id>nanoFramework.Tools.MetadataProcessor.Core</id>
5+
<title>nanoFramework.Tools.MetadataProcessor.Core</title>
66
<version>$version$</version>
77
<authors>nanoFramework project contributors</authors>
88
<owners>nanoFramework project contributors</owners>
@@ -19,12 +19,14 @@
1919
<requireLicenseAcceptance>false</requireLicenseAcceptance>
2020
<licenseUrl>https://github.com/nanoframework/metadata-processor/LICENSE</licenseUrl>
2121
<copyright>Copyright (c) 2019 The nanoFramework project contributors</copyright>
22-
<dependencies></dependencies>
2322
<references></references>
2423
<tags>nanoFramework, nano Framework, NETNF, NETMF, Micro Framework, .net</tags>
24+
<dependencies>
25+
<dependency id="Mono.Cecil" version="0.11.1" />
26+
<dependency id="Stubble.Core" version="1.6.3" />
27+
</dependencies>
2528
</metadata>
2629
<files>
27-
<file src="bin\Release\nanoFramework.Tools.MetaDataProcessor.exe" target="build" />
28-
<file src="nanoFramework.Tools.MetaDataProcessor.targets" target="build" />
30+
<file src="bin\Release\nanoFramework.Tools.MetadataProcessor.Core.dll" target="build" />
2931
</files>
3032
</package>

source/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "2.0",
3+
"version": "2.1",
44
"assemblyVersion": {
55
"precision": "build"
66
},

0 commit comments

Comments
 (0)