Skip to content

Commit 1aca8f3

Browse files
committed
test: try fix CI
1 parent cdda5f1 commit 1aca8f3

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

tests/fixtures/Directory.Build.props

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<Project>
2+
<!-- Disable central package version of tests projects -->
3+
<PropertyGroup>
4+
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
5+
</PropertyGroup>
6+
<!-- Disable lock files for tests projects -->
7+
<PropertyGroup>
8+
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
9+
<RestoreLockedMode>false</RestoreLockedMode>
10+
</PropertyGroup>
11+
</Project>

tests/fixtures/invalid/MissingFableTargetMultiTFM.fsproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
<FablePackageType>binding</FablePackageType>
6-
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
76
</PropertyGroup>
87
<Import Project="./../Fable.Package.SDK.Imports.props" />
98
</Project>

tests/fixtures/valid/library-with-files-multi-tfm/MyLibraryMultiTFM.fsproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@
44
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
<FablePackageType>library</FablePackageType>
66
<PackageTags>fable-javascript</PackageTags>
7-
<!--
8-
Disable central package management because we install local package during tests
9-
and we don't want that to impact the top level Directory.Packages.props
10-
-->
11-
<ManagePackageVersionsCentrally>False</ManagePackageVersionsCentrally>
127
</PropertyGroup>
138
<ItemGroup>
149
<Compile Include="Entry.fs" />

0 commit comments

Comments
 (0)