Modifies ANCM DLL location based on folder rather than name. (#240)

This commit is contained in:
Justin Kotalik 2017-11-08 16:02:52 -08:00 committed by GitHub
parent bd18430428
commit 618d3dabee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -15,8 +15,8 @@
<tags>Microsoft.AspNetCore.AspNetCoreModule</tags>
</metadata>
<files>
<file src="..\artifacts\build\AspNetCore\bin\Release\Win32\aspnetcore.dll" target="runtimes\win7\native\aspnetcore_x86.dll" />
<file src="..\artifacts\build\AspNetCore\bin\Release\x64\aspnetcore.dll" target="runtimes\win7\native\aspnetcore_x64.dll" />
<file src="..\artifacts\build\AspNetCore\bin\Release\Win32\aspnetcore.dll" target="runtimes\win7\native\x86\aspnetcore.dll" />
<file src="..\artifacts\build\AspNetCore\bin\Release\x64\aspnetcore.dll" target="runtimes\win7\native\x64\aspnetcore.dll" />
<file src="..\artifacts\build\AspNetCore\bin\Release\x64\*.xml"/>
<file src="..\tools\installancm.ps1"/>
<file src="..\LICENSE.txt"/>

View File

@ -1,8 +1,8 @@
<Project>
<PropertyGroup>
<AspNetCoreModuleX64Location>$(MSBuildThisFileDirectory)..\runtimes\win7\native\aspnetcore_x64.dll</AspNetCoreModuleX64Location>
<AspNetCoreModuleX86Location>$(MSBuildThisFileDirectory)..\runtimes\win7\native\aspnetcore_x86.dll</AspNetCoreModuleX86Location>
<AspNetCoreModuleX64Location>$(MSBuildThisFileDirectory)..\runtimes\win7\native\x64\aspnetcore.dll</AspNetCoreModuleX64Location>
<AspNetCoreModuleX86Location>$(MSBuildThisFileDirectory)..\runtimes\win7\native\x86\aspnetcore.dll</AspNetCoreModuleX86Location>
</PropertyGroup>
</Project>