-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.Build.props
44 lines (40 loc) · 2 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
<Project>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<RepoRootPath>$(MSBuildThisFileDirectory)</RepoRootPath>
<SrcDirectory>$(MSBuildThisFileDirectory)src/</SrcDirectory>
<NativeLibDirectory>$(MSBuildThisFileDirectory)native/</NativeLibDirectory>
</PropertyGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/amerkoleci/Alimer.Bindings</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseArtifactsOutput>true</UseArtifactsOutput>
<!-- Local builds should embed PDBs so we never lose them when a subsequent build occurs. -->
<DebugType Condition=" '$(CI)' != 'true' and '$(TF_BUILD)' != 'true' ">embedded</DebugType>
<Features>strict</Features>
<AnalysisLevel>preview</AnalysisLevel>
<RestoreConfigFile>$(MSBuildThisFileDirectory)NuGet.config</RestoreConfigFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
</PropertyGroup>
<PropertyGroup>
<Authors>Amer Koleci</Authors>
<Owners>Amer Koleci</Owners>
<Company>Amer Koleci</Company>
<Copyright>Copyright (c) Amer Koleci and Contributors</Copyright>
<Product>Alimer.Bindings</Product>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<ContinuousIntegrationBuild Condition="'$(GITHUB_RUN_ID)' != ''">true</ContinuousIntegrationBuild>
<UseSharedCompilation>true</UseSharedCompilation>
</PropertyGroup>
</Project>