Skip to content

Commit 08eb6ff

Browse files
committed
Handle Nuget Restore target: aka dont do anything just so it wont log warning for missing target
1 parent 6c22f61 commit 08eb6ff

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Files.csproj

+7
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@
1616
<AboutFiles Include="About\About-Release.xml;About\About.xml"/>
1717
</ItemGroup>
1818
<Target Name="Clean" />
19+
<Target Name="_IsProjectRestoreSupported"
20+
Returns="@(_ValidProjectsForRestore)">
21+
<ItemGroup>
22+
<_ValidProjectsForRestore Include="$(MSBuildProjectFullPath)" />
23+
</ItemGroup>
24+
</Target>
25+
<Target Name="Restore" />
1926
<Target Name="Build">
2027
<Copy Condition=" '$(Configuration)' == 'Release' "
2128
SourceFiles="About\About-Release.xml"

0 commit comments

Comments
 (0)