forked from amerkoleci/alimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
56 lines (48 loc) · 2.79 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<_VorticeTargetPlatformIdentifier>$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)'))</_VorticeTargetPlatformIdentifier>
<_VorticeTargetPlatformIsAndroid Condition="'$(_VorticeTargetPlatformIdentifier)' == 'android'">True</_VorticeTargetPlatformIsAndroid>
<_VorticeTargetPlatformIsiOS Condition="'$(_VorticeTargetPlatformIdentifier)' == 'ios'">True</_VorticeTargetPlatformIsiOS>
<_VorticeTargetPlatformIsMacCatalyst Condition="'$(_VorticeTargetPlatformIdentifier)' == 'maccatalyst'">True</_VorticeTargetPlatformIsMacCatalyst>
<_VorticeTargetPlatformIsmacOS Condition="'$(_VorticeTargetPlatformIdentifier)' == 'macos'">True</_VorticeTargetPlatformIsmacOS>
<_VorticeTargetPlatformIstvOS Condition="'$(_VorticeTargetPlatformIdentifier)' == 'tvos'">True</_VorticeTargetPlatformIstvOS>
<_VorticeTargetPlatformIsWindows Condition="$(_VorticeTargetPlatformIdentifier.Contains('windows')) == 'True'">True</_VorticeTargetPlatformIsWindows>
</PropertyGroup>
<PropertyGroup>
<RepositoryRootDirectory>$(MSBuildThisFileDirectory)</RepositoryRootDirectory>
</PropertyGroup>
<PropertyGroup>
<LangVersion>10.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DebugType>portable</DebugType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''">alpha</VersionSuffix>
</PropertyGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/amerkoleci/vortice</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<ProjectUrl>https://github.com/amerkoleci/vortice</ProjectUrl>
<Authors>Amer Koleci</Authors>
<Owners>Amer Koleci</Owners>
<Company>Amer Koleci</Company>
<Copyright>Copyright © Amer Koleci and Contributors</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>vortice dotnet net netcore netstandard csharp library directx vulkan gpu performance shader hlsl</PackageTags>
<PackageOutputPath>$(MSBuildThisFileDirectory)artifacts/</PackageOutputPath>
</PropertyGroup>
<!-- https://github.com/dotnet/sourcelink -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="all" />
</ItemGroup>
</Project>