-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathExamples.macOS.WebKit.fsproj
More file actions
32 lines (32 loc) · 1.28 KB
/
Examples.macOS.WebKit.fsproj
File metadata and controls
32 lines (32 loc) · 1.28 KB
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
32
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-macos</TargetFramework>
<OutputType>Exe</OutputType>
<RootNamespace>Example.macOS.WebKit</RootNamespace>
<AssemblyName>InterstellarExample</AssemblyName>
<SupportedOSPlatformVersion>10.15</SupportedOSPlatformVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<EnableCodeSigning>false</EnableCodeSigning>
<UseSGen>false</UseSGen>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<EnableCodeSigning>false</EnableCodeSigning>
<UseSGen>false</UseSGen>
</PropertyGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<Compile Include="AppDelegate.fs" />
<Compile Include="Main.fs" />
<None Include="Info.plist" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Examples.SharedCode\Examples.SharedCode.fsproj" />
<ProjectReference Include="..\..\src\Interstellar.Core\Interstellar.Core.fsproj" />
<ProjectReference Include="..\..\src\Interstellar.MacOS.WebKit\Interstellar.MacOS.WebKit.fsproj" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>