This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
analytics.twitter.com | |
api.mixpanel.com | |
api.segment.io | |
attestation.xboxlive.com | |
az416426.vo.msecnd.net | |
browser.pipe.aria.microsoft.com | |
c.bing.com | |
c.msn.com | |
c1.microsoft.com | |
cdn-gl.imrworldwide.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- add this target to *each* project file, and modify the BeforeBuild target that's already in the project file (usually commented out) to depend on it --> | |
<Target Name="RestoreNuGetPackages" Condition="Exists('.\packages.config')" BeforeTargets="Build"> | |
<!-- try to execute `nuget help` to see if it's available from what's in the PATH --> | |
<Exec Command="cmd.exe /c nuget help > NUL" IgnoreExitCode="True"> | |
<Output TaskParameter="ExitCode" PropertyName="NuGetExitCode"/> | |
</Exec> | |
<!-- raise an error if nuget.exe wassn't available from what's in the PATH --> | |
<Error Text="Failed to execute nuget.exe; please make sure your PATH environment variable provides a path to nuget.exe." Condition="'$(NuGetExitCode)' != '' and '$(NuGetExitCode)' > '0'" /> | |
<!-- restore packages --> | |
<Exec Command="nuget install .\packages.config -o $(SolutionDir)\packages" /> |