-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Fix some fast up to date check issues in VS #32140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
dbeacda
f0cc2fe
cca9e4f
0661a5f
994f7cd
a89196d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<Project> | ||
<Project> | ||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
<Import Project="..\..\build\assets.props" /> | ||
|
||
|
@@ -30,6 +30,9 @@ | |
<ItemGroup Condition=" '$(BuildIisNativeProjects)' == 'true' "> | ||
<NativeProjectReference Include="$(MSBuildThisFileDirectory)..\..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj" Platform="$(NativeVCPlatform)" /> | ||
<NativeProjectReference Include="$(MSBuildThisFileDirectory)..\..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj" Platform="$(NativeVCPlatform)" /> | ||
|
||
<UpToDateCheckInput Include="$(AspNetCoreModuleV2OutOfProcessHandlerDll)" /> | ||
<UpToDateCheckInput Include="$(AspNetCoreModuleV2ShimDll)" /> | ||
Comment on lines
+34
to
+35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would it help to set There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are you proposing that to solve the fact that this project doesn't generate an output assembly, or for some other reason? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, to solve the lack of an output assembly -- if it works 😃 |
||
</ItemGroup> | ||
|
||
<Target Name="AddPackNativeComponents" AfterTargets="_CalculateInputsOutputsForPack" Condition="'$(BuildIisNativeProjects)' == 'true' AND '$(PackNativeAssets)' == 'true'"> | ||
|
Uh oh!
There was an error while loading. Please reload this page.