Skip to content

Commit 55dca00

Browse files
committed
Restore packages on project build if it never happened before
To prevent VS going crazy on changing configurations we have to manually restore packages. To optimize this process we skip restore if restore already happened or for builds outside VS (also should work for Rider), New property DoInsideBuild is defined to be a mark of build from IDE, it can me changed in User.Directory.Build.props in case some specific ide is needed to be detected.
1 parent b10b6e0 commit 55dca00

3 files changed

+20
-0
lines changed

Directory.Build.props

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@
3333
<DoGeneratePackage Condition="$(MSBuildProjectName) == 'TestCommon'">false</DoGeneratePackage>
3434
<DoGeneratePackage Condition="$(MSBuildProjectName.Contains('Tests')) == 'true'">false</DoGeneratePackage>
3535

36+
<!-- BuildingInsideVisualStudio is also true in Rider -->
37+
<DoIsIdeBuild>false</DoIsIdeBuild>
38+
<DoIsIdeBuild Condition="$(BuildingInsideVisualStudio) == 'true'">true</DoIsIdeBuild>
39+
3640
<!-- Disable "BinaryFormatter is obsolete" warnings for test projects -->
3741
<NoWarn Condition="$(MSBuildProjectName.Contains('Tests')) == 'true'">$(NoWarn);SYSLIB0011</NoWarn>
3842
</PropertyGroup>

Directory.Build.targets

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<!--
5+
Restores packages if needed. This helps VS to not go crazy on build configuration change
6+
-->
7+
<Target Name="DORestorePackages" BeforeTargets="PrepareForBuild"
8+
Condition="!Exists($(ProjectAssetsFile)) AND $(DoIsIdeBuild)=='true'">
9+
<CallTarget Targets="Restore" />
10+
</Target>
11+
</Project>

User.Directory.Build.props.example

+5
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,10 @@
44
<DoNugetFeedUserName>Put username here</DoNugetFeedUserName>
55
<DoNugetFeedPassword>Put password here</DoNugetFeedPassword>
66
<DoNugetFeedUrl>Put url here</DoNugetFeedUrl>
7+
8+
<!-- This allows to tell that build is from IDE in addition to standard "$(BuildingInsideVisualStudio)== 'true'" check -->
9+
<!--
10+
<DoIsIdeBuild Condition="$(DoIsIdeBuild) == 'true' OR <Put additional checks here>">true</DoIsIdeBuild>
11+
-->
712
</PropertyGroup>
813
</Project>

0 commit comments

Comments
 (0)