-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSharpGPU.csproj
80 lines (72 loc) · 3.67 KB
/
SharpGPU.csproj
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Platforms>x64;ARM64</Platforms>
<AssemblyName>SharpGPU</AssemblyName>
<RootNamespace>SharpGPU</RootNamespace>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<IntermediateOutputPath>../../../Intermediate/Graphics/SharpGPU/</IntermediateOutputPath>
<Nullable>enable</Nullable>
<BaseOutputPath>$(ProjectDir)../../../Binaries/Graphics/SharpGPU/</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WarningLevel>3</WarningLevel>
<OutputPath>../../../Binaries/Graphics/SharpGPU/Win64/Debug/</OutputPath>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors />
<DefineConstants>$(DefineConstants)TRACE;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors></WarningsAsErrors>
<OutputPath>../../../Binaries/Graphics/SharpGPU/Win64/Release/</OutputPath>
<WarningLevel>3</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<PlatformTarget>x64</PlatformTarget>
<DefineConstants>$(DefineConstants)TRACE;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
<PlatformTarget>ARM64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WarningLevel>3</WarningLevel>
<OutputPath>../../../Binaries/Graphics/SharpGPU/ARM64/Debug/</OutputPath>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors />
<DefineConstants>$(DefineConstants)TRACE;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors></WarningsAsErrors>
<OutputPath>../../../Binaries/Graphics/SharpGPU/ARM64/Release/</OutputPath>
<WarningLevel>3</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<PlatformTarget>ARM64</PlatformTarget>
<DefineConstants>$(DefineConstants)TRACE;</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Evergine.Bindings.Vulkan" Version="2024.11.1.33" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="SharpGen.Runtime" Version="2.2.0-beta" />
<PackageReference Include="Silk.NET.Vulkan" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.AMD" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.ANDROID" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.ARM" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.EXT" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.HUAWEI" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.INTEL" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.KHR" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.MVK" Version="2.22.0" />
<PackageReference Include="Silk.NET.Vulkan.Extensions.NV" Version="2.22.0" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="TerraFX.Interop.D3D12MemoryAllocator" Version="2.0.1.5" />
<PackageReference Include="Vortice.Vulkan" Version="1.9.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Infinity.Core.csproj" />
<ProjectReference Include="..\..\ThirdParty\Apple\SharpMetal\SharpMetal.csproj" />
</ItemGroup>
</Project>