From ad30021d6d99b5c674d7edcf9bf36fba31480db4 Mon Sep 17 00:00:00 2001
From: chylex <contact@chylex.com>
Date: Sat, 5 Feb 2022 22:57:54 +0100
Subject: [PATCH] Fix missing platform declaration in F# project files

---
 lib/TweetTest.Browser.CEF/TweetTest.Browser.CEF.fsproj | 1 +
 lib/TweetTest.Core/TweetTest.Core.fsproj               | 1 +
 lib/TweetTest.Utils/TweetTest.Utils.fsproj             | 1 +
 3 files changed, 3 insertions(+)

diff --git a/lib/TweetTest.Browser.CEF/TweetTest.Browser.CEF.fsproj b/lib/TweetTest.Browser.CEF/TweetTest.Browser.CEF.fsproj
index 2ebd9ce2..6acfa281 100644
--- a/lib/TweetTest.Browser.CEF/TweetTest.Browser.CEF.fsproj
+++ b/lib/TweetTest.Browser.CEF/TweetTest.Browser.CEF.fsproj
@@ -2,6 +2,7 @@
   
   <PropertyGroup>
     <TargetFramework>net472</TargetFramework>
+    <Platforms>x86</Platforms>
   </PropertyGroup>
   
   <ItemGroup>
diff --git a/lib/TweetTest.Core/TweetTest.Core.fsproj b/lib/TweetTest.Core/TweetTest.Core.fsproj
index 1810c097..242aec01 100644
--- a/lib/TweetTest.Core/TweetTest.Core.fsproj
+++ b/lib/TweetTest.Core/TweetTest.Core.fsproj
@@ -2,6 +2,7 @@
   
   <PropertyGroup>
     <TargetFramework>net472</TargetFramework>
+    <Platforms>x86</Platforms>
   </PropertyGroup>
   
   <ItemGroup>
diff --git a/lib/TweetTest.Utils/TweetTest.Utils.fsproj b/lib/TweetTest.Utils/TweetTest.Utils.fsproj
index 682a3b3d..01f93983 100644
--- a/lib/TweetTest.Utils/TweetTest.Utils.fsproj
+++ b/lib/TweetTest.Utils/TweetTest.Utils.fsproj
@@ -2,6 +2,7 @@
   
   <PropertyGroup>
     <TargetFramework>net472</TargetFramework>
+    <Platforms>x86</Platforms>
   </PropertyGroup>
   
   <ItemGroup>