Skip to content

Commit d060244

Browse files
authored
Merge pull request #1575 from OmarTawfik/build-setup
Build setup in AppVeyor/Jenkins
2 parents f411e3a + 705e8e4 commit d060244

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.nuget/NuGet.Config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<add key="myget.org fsharp-daily" value="https://www.myget.org/F/fsharp-daily/api/v3/index.json" />
1111
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
1212
<add key="myget.org dotnet-buildtools" value="https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json" />
13+
<add key="myget.org roslyn-tools" value="https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json" />
1314
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
1415
<add key="vctools" value="https://vcppdogfooding.azurewebsites.net/nuget/" />
1516
</packageSources>

build.cmd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ if /i '%ARG%' == 'all' (
9696
set BUILD_CORECLR=1
9797
set BUILD_PORTABLE=1
9898
set BUILD_VS=1
99+
set BUILD_SETUP=1
99100

100101
set TEST_COMPILERUNIT=1
101102
set TEST_NET40_COREUNIT=1
@@ -142,6 +143,7 @@ if /i '%ARG%' == 'ci' (
142143
set BUILD_CORECLR=1
143144
set BUILD_PORTABLE=1
144145
set BUILD_VS=1
146+
set BUILD_SETUP=1
145147

146148
set TEST_COMPILERUNIT=1
147149
set TEST_NET40_COREUNIT=1
@@ -162,6 +164,7 @@ if /i '%ARG%' == 'ci_part1' (
162164
set BUILD_CORECLR=0
163165
set BUILD_PORTABLE=1
164166
set BUILD_VS=1
167+
set BUILD_SETUP=1
165168

166169
set TEST_COMPILERUNIT=1
167170
set TEST_NET40_COREUNIT=0

packages.config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
<package id="Microsoft.DiaSymReader" version="1.0.8" />
1414
<package id="FsSrGen" version="2.0.0" targetFramework="net46" />
1515
<package id="MicroBuild.Core" version="0.2.0" />
16+
<package id="MicroBuild.Core.Sentinel" version="1.0.0" />
17+
<package id="MicroBuild.Plugins.SwixBuild" version="1.0.43" />
1618
<package id="WiX.Toolset.2015" version="3.10.0.1503" />
1719
<package id="Microsoft.VisualFSharp.Core.Redist" version="1.0.0" />
1820
<package id="Microsoft.VisualFSharp.Type.Providers.Redist" version="1.0.0" />

setup/FSharp.SDK/FSharp.SDK.wixproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<Error Condition="'$(IsLangPack)' == ''" Text="A 'IsLangPack' property must be passed to the project." />
7373
</Target>
7474

75-
<Target Name="CopyMsiToInsertionFolder" AfterTargets="SignFiles">
75+
<Target Name="CopyMsiToInsertionFolder" AfterTargets="Build">
7676
<ItemGroup>
7777
<MsiPath Include="$(OutDir)$(OutputName).msi" />
7878
</ItemGroup>

0 commit comments

Comments
 (0)