Skip to content

Commit

Permalink
Added missed(thx gitignore) build targets for ilasm nuget: native + net
Browse files Browse the repository at this point in the history
  • Loading branch information
3F committed Nov 3, 2019
1 parent dc54b5e commit 4c0cdf2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ilasm.pkg/build/native/ILAsm.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<!-- For Native C/C++ projects
https://github.com/3F/coreclr
-->

<PropertyGroup>
<ILAsm_RootPkg>$(MSBuildThisFileDirectory)..\..\</ILAsm_RootPkg> <!-- [root]\build\native\ILAsm.targets -->
<ILAsm_PathToBin>$(ILAsm_RootPkg)bin\</ILAsm_PathToBin>
</PropertyGroup>

</Project>
13 changes: 13 additions & 0 deletions ilasm.pkg/build/net/ILAsm.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<!-- For .NET projects
https://github.com/3F/coreclr
-->

<PropertyGroup>
<ILAsm_RootPkg>$(MSBuildThisFileDirectory)..\..\</ILAsm_RootPkg> <!-- [root]\build\net\ILAsm.targets -->
<ILAsm_PathToBin>$(ILAsm_RootPkg)bin\</ILAsm_PathToBin>
</PropertyGroup>

</Project>

0 comments on commit 4c0cdf2

Please sign in to comment.