Fix build on non-Windows
This commit is contained in:
parent
143bee75ff
commit
8c7f7dc772
3 changed files with 15 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -15,9 +15,6 @@ Library/
|
||||||
# local nuget cache
|
# local nuget cache
|
||||||
.nuget/
|
.nuget/
|
||||||
|
|
||||||
# NuGet.Config at the root
|
|
||||||
/NuGet.Config
|
|
||||||
|
|
||||||
# NuGet v3 restore drops these even though we don't use MSBuild :(
|
# NuGet v3 restore drops these even though we don't use MSBuild :(
|
||||||
*.nuget.targets
|
*.nuget.targets
|
||||||
*.nuget.props
|
*.nuget.props
|
||||||
|
|
15
NuGet.config
Normal file
15
NuGet.config
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<solution>
|
||||||
|
<add key="disableSourceControlIntegration" value="true" />
|
||||||
|
</solution>
|
||||||
|
<!-- Only specify feed for Arcade SDK (see https://github.com/Microsoft/msbuild/issues/2982) -->
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
<add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
|
||||||
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
||||||
|
</packageSources>
|
||||||
|
<disabledPackageSources>
|
||||||
|
<clear />
|
||||||
|
</disabledPackageSources>
|
||||||
|
</configuration>
|
0
build.sh
Normal file → Executable file
0
build.sh
Normal file → Executable file
Loading…
Reference in a new issue