-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNodeSharp.NodeEngine.csproj
More file actions
44 lines (33 loc) · 2.34 KB
/
NodeSharp.NodeEngine.csproj
File metadata and controls
44 lines (33 loc) · 2.34 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
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0-android;net10.0-ios;net10.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net10.0-windows10.0.19041.0</TargetFrameworks>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="10.0.30" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Syncfusion.Maui.Toolkit" Version="1.0.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NodeSharp.Nodes.Debug\NodeSharp.Nodes.Debug.csproj" />
<ProjectReference Include="..\NodeSharp.Nodes.Delay\NodeSharp.Nodes.Delay.csproj" />
<ProjectReference Include="..\NodeSharp.Nodes.Function\NodeSharp.Nodes.Function.csproj" />
<ProjectReference Include="..\NodeSharp.Nodes.Inject\NodeSharp.Nodes.Inject.csproj" />
<ProjectReference Include="..\NodeSharp.Nodes.KS0212\NodeSharp.Nodes.KS0212.csproj" />
<ProjectReference Include="..\NodeSharp.Nodes.Random\NodeSharp.Nodes.Random.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Node\" />
</ItemGroup>
</Project>