This repository was archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 457
Fix XCT fails build in F# projects #1133
Merged
Merged
Changes from 4 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8760ddd
Add "shared" to file name
maxkoshevoi b4fbc4a
Revert "Add "shared" to file name"
maxkoshevoi 6aad441
Include PreserveXamarinCommunityToolkit only in csproj
maxkoshevoi 403f20c
Add PreserveXamarinCommunityToolkit.fs
maxkoshevoi 7be495f
Resolve comments
maxkoshevoi 97a22e9
Revert "Resolve comments"
maxkoshevoi 4b52d48
Revert "Add PreserveXamarinCommunityToolkit.fs"
maxkoshevoi e0e289f
Merge branch 'main' into 1124
maxkoshevoi 3059e09
Merge branch 'main' into 1124
maxkoshevoi 7fcb378
Merge branch 'main' into 1124
TheCodeTraveler 0da3b28
Merge branch 'main' into 1124
TheCodeTraveler 1637724
Merge branch 'main' into 1124
TheCodeTraveler File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
src/CommunityToolkit/Xamarin.CommunityToolkit/build/PreserveXamarinCommunityToolkit.fs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// <auto-generated/> | ||
|
||
open Xamarin.CommunityToolkit.Helpers | ||
|
||
[<assembly: PreserveToolkit>] | ||
do () | ||
6 changes: 5 additions & 1 deletion
6
src/CommunityToolkit/Xamarin.CommunityToolkit/build/Xamarin.CommunityToolkit.targets
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
<Project> | ||
<ItemGroup> | ||
<Compile Include="$(MSBuildThisFileDirectory)PreserveXamarinCommunityToolkit.cs" | ||
<Compile Condition="'$(MSBuildProjectExtension)' == '.csproj'" | ||
Include="$(MSBuildThisFileDirectory)PreserveXamarinCommunityToolkit.cs" | ||
Visible="false" /> | ||
<Compile Condition="'$(MSBuildProjectExtension)' == '.fsproj'" | ||
Include="$(MSBuildThisFileDirectory)PreserveXamarinCommunityToolkit.fs" | ||
Visible="false" /> | ||
</ItemGroup> | ||
</Project> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.