Modifies ANCM DLL location based on folder rather than name. (#240)
This commit is contained in:
parent
bd18430428
commit
618d3dabee
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue