commit 2cfe2e9d9d95b6717592fee3c3ef352955b645cb Author: Tommy Parnell Date: Wed Apr 19 21:40:14 2017 -0400 commit yo diff --git a/Package.nuspec b/Package.nuspec new file mode 100644 index 0000000..0b2be96 --- /dev/null +++ b/Package.nuspec @@ -0,0 +1,21 @@ + + + + TerribleDev.RuntimeIdentifier.MSBuild + 1.0.1 + Tommy Parnell + Tommy Parnell + https://opensource.org/licenses/MIT + https://github.com/TerribleDev/TerribleDev.RuntimeIdentifier.MSBuild + false + Add an msbuild task to automatically compile your apps runtime identifier + Copyright 2017 + msbuild dotnetcore runtimeidentifier + + + + + + + + \ No newline at end of file diff --git a/TerribleDev.RuntimeIdentifier.MSBuild.1.0.1.nupkg b/TerribleDev.RuntimeIdentifier.MSBuild.1.0.1.nupkg new file mode 100644 index 0000000..d0eca3f Binary files /dev/null and b/TerribleDev.RuntimeIdentifier.MSBuild.1.0.1.nupkg differ diff --git a/build/TerribleDev.RuntimeIdentifier.MSBuild.targets b/build/TerribleDev.RuntimeIdentifier.MSBuild.targets new file mode 100644 index 0000000..6b3c1d2 --- /dev/null +++ b/build/TerribleDev.RuntimeIdentifier.MSBuild.targets @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/buildMultiTargeting/TerribleDev.RuntimeIdentifier.MSBuild.targets b/buildMultiTargeting/TerribleDev.RuntimeIdentifier.MSBuild.targets new file mode 100644 index 0000000..9e40613 --- /dev/null +++ b/buildMultiTargeting/TerribleDev.RuntimeIdentifier.MSBuild.targets @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/lib/netstandard1.1/_._ b/lib/netstandard1.1/_._ new file mode 100644 index 0000000..e69de29 diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..4aa4b8e --- /dev/null +++ b/readme.md @@ -0,0 +1,32 @@ +## TerribleDev.RuntimeIdentifier.MSBuild + +A simple package to build all of your runtime identifiers + + +# Installation + +Visual Studio: + +``` +PM> Install-Package TerribleDev.RuntimeIdentifier.MSBuild +``` + +dotnet cli + +``` +$ dotnet add package TerribleDev.RuntimeIdentifier.MSBuild +``` + + +# Usage + + +add some runtime identifiers to your property group + +```xml + + win10-x64;osx.10.11-x64 + +``` + +run `dotnet publish` watch how you no longer have to specify the runtimes to compile for. \ No newline at end of file diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..870d164 --- /dev/null +++ b/readme.txt @@ -0,0 +1 @@ +This is a simple package that hooks into the AfterPublish target, and compiles all of your runtime identifiers. After you install this you should run dotnet restore. \ No newline at end of file