forked from AvantiPoint/mauimicromvvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
44 lines (41 loc) · 1.69 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>
<Authors>Dan Siegel</Authors>
<Company>AvantiPoint, LLC</Company>
<Copyright>Copyright © AvantiPoint, LLC 2016-$([System.DateTime]::Now.Year)</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>avantipoint-icon.png</PackageIcon>
<PackageOutputPath>$([System.IO.Path]::Combine('$(MSBuildThisFileDirectory)', 'Artifacts'))</PackageOutputPath>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>True</IncludeSource>
<LangVersion>latest</LangVersion>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/AvantiPoint/mauimicromvvm.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/AvantiPoint/mauimicromvvm</PackageProjectUrl>
<NeutralLanguage>en</NeutralLanguage>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<NoWarn>$(NoWarn);NU1507</NoWarn>
<IsPackable>$(MSBuildProjectName.Contains('MauiMicroMvvm'))</IsPackable>
</PropertyGroup>
<PropertyGroup>
<DotNetVersion>net8.0</DotNetVersion>
</PropertyGroup>
<!-- CI Helper -->
<PropertyGroup>
<ContinuousIntegrationBuild>$(CI)</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup Condition=" $(IsPackable) ">
<None Include="$(MSBuildThisFileDirectory)LICENSE"
Visible="False"
Pack="True"
PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)avantipoint-icon.png"
Visible="False"
Pack="True"
PackagePath="" />
<SourceRoot Include="$(MSBuildThisFileDirectory)" />
</ItemGroup>
</Project>