forked from SiliconStudio/xenko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.config
31 lines (27 loc) · 1.13 KB
/
store.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="repositorypath" value="GamePackages" />
<!-- The list of valid main package names, separated by a comma (no space!) -->
<add key="mainPackages" value="Xenko"/>
<!-- The list of valid main package executable names, separated by a comma (no space!) -->
<add key="mainExecutables" value="Bin\Windows-Direct3D11\Xenko.GameStudio.exe"/>
<add key="vsixPlugin" value="SiliconStudio.Xenko.VisualStudio.Package"/>
<add key="prerequisitesInstaller" value="Bin\Prerequisites\install-prerequisites.exe"/>
</config>
<packageRestore>
<clear/>
<!-- Allow NuGet to download missing packages -->
<add key="enabled" value="True" />
</packageRestore>
<packageSources>
<clear />
<!-- ensure only the sources defined below are used -->
<add key="Xenko" value="https://store.xenko.com/api/v2/" />
</packageSources>
<activePackageSource>
<clear/>
<!-- this tells only one given source is active -->
<add key="Xenko official package source" value="https://store.xenko.com/api/v2/" />
</activePackageSource>
</configuration>