584d3f0502
Add ExeutablePackageObtainer Given a tools package id, it can create a fake project and restore to correct folder - DI, aka no circular dependency of commands - Parser of config XML - I try to create test nupkg at build time, so I can run test and debug easily with VSCode. The code is in test csproj.
13 lines
No EOL
513 B
XML
13 lines
No EOL
513 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
|
<metadata>
|
|
<id>global.tool.console.demo</id>
|
|
<version>1.0.4</version>
|
|
<description>test app</description>
|
|
<authors>testauthor</authors>
|
|
</metadata>
|
|
<files>
|
|
<file src="bin\Release\netcoreapp2.1\publish\*.*" target="tools\netcoreapp2.1\" />
|
|
<file src="DotnetToolsConfig.xml" target="tools\DotnetToolsConfig.xml" />
|
|
</files>
|
|
</package> |