-
Notifications
You must be signed in to change notification settings - Fork 36
/
Directory.Build.props
78 lines (66 loc) · 3.21 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project>
<PropertyGroup>
<FuseeEngineRoot Condition=" '$(FuseeRoot)' != '' ">$(FuseeRoot)\</FuseeEngineRoot>
<FuseeEngineRoot Condition=" '$(FuseeEngineRoot)' == '' ">$(MSBuildThisFileDirectory)\</FuseeEngineRoot>
<BaseOutputPath>$(FuseeEngineRoot)\bin\$(Configuration)</BaseOutputPath>
<OutputPath>$(BaseOutputPath)\Libraries\$(AssemblyName)</OutputPath>
<Authors>FuseeProjectTeam</Authors>
<Company>Furtwangen University</Company>
<Product>FUSEE</Product>
<Version>0.13.0</Version>
<AssemblyVersion>0.13.0</AssemblyVersion>
<FileVersion>0.13.0</FileVersion>
<PackageVersion>0.13.0</PackageVersion>
<Copyright>Copyright 2013-2022</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://fusee3d.org/</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/FUSEEProjectTeam/Fusee.git</RepositoryUrl>
<PackageIcon>images\icon.png</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ApplicationIcon>$(FuseeEngineRoot)\art\Deliverables\FuseeLogo.ico</ApplicationIcon>
<IsPackable>false</IsPackable>
<LangVersion>10</LangVersion>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<TieredCompilation>false</TieredCompilation>
<PackageOutputPath>$(FuseeEngineRoot)\bin\Release\nuget</PackageOutputPath>
<!--
Suppress warnings
1701 and 1702 is standard.
-->
<NoWarn>1701;1702</NoWarn>
<!--
<WarningLevel>9999</WarningLevel>
<TreatWarningsAsErrors Condition="'$(Configuration)'=='Release'">true</TreatWarningsAsErrors>
-->
</PropertyGroup>
<!-- This enables deterministic builds when building NuGet and when running on GitHub Actions or Azure DevOps -->
<PropertyGroup Condition="'$(NUGET_BUILD)' == 'true' Or '$(GITHUB_ACTIONS)' == 'true' Or '$(TF_BUILD)' == 'true'">
<Deterministic>True</Deterministic>
<ContinuousIntegrationBuild>True</ContinuousIntegrationBuild>
<DeterministicSourcePaths>True</DeterministicSourcePaths>
</PropertyGroup>
<!-- Link files and packages for all projects -->
<ItemGroup>
<PackageReference Include="ErrorProne.NET.CoreAnalyzers" Version="0.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ErrorProne.NET.Structs" Version="0.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<!-- Link files and packages for all NuGet packages -->
<ItemGroup Condition="$(IsPackable) == 'true'">
<Content Include="$(FuseeEngineRoot)\art\Deliverables\FuseeIcon128WithTextSquare.png" Link="NuGet\icon.png" PackagePath="images\icon.png" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
</Project>