-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
54 lines (47 loc) · 2.68 KB
/
Directory.Build.props
File metadata and controls
54 lines (47 loc) · 2.68 KB
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
<Project>
<PropertyGroup>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
<NoWarn>IDE0130;CA1416</NoWarn>
<ImplicitUsings>false</ImplicitUsings>
<!-- Set output paths -->
<SourceDir>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Directory.Build.props'))</SourceDir>
<ArtifactsDir>$(SourceDir)\artifacts</ArtifactsDir>
<Artifacts>$(SourceDir)\artifacts\$(MSBuildProjectName)</Artifacts>
<OutputPath>$(Artifacts)\bin</OutputPath>
<BaseOutputPath>$(Artifacts)\obj</BaseOutputPath>
<BaseIntermediateOutputPath>$(BaseOutputPath)</BaseIntermediateOutputPath>
<PackageOutputPath>$(SourceDir)nuget</PackageOutputPath>
</PropertyGroup>
<PropertyGroup>
<Authors>Panos Athanasiou</Authors>
<Copyright>Copyright (c) 2022 Panos Athanasiou</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/panoukos41/navigation</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
<DefaultPackageDescription>A project for key to view navigation using ReactiveUI while providing ViewModel creation and navigation aware interface.</DefaultPackageDescription>
<PackageDescription>$(DefaultPackageDescription)</PackageDescription>
<Owners>panoukos41</Owners>
<PackageTags>mvvm;reactiveui;dotnet;netstandard;xamarin;android;uwp;wpf;wui;</PackageTags>
<PackageReleaseNotes>https://github.com/panoukos41/navigation/releases</PackageReleaseNotes>
<RepositoryUrl>https://github.com/panoukos41/navigation</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Include PDB in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<None Include="$(SourceDir)\README.md" Pack="true" PackagePath="\"/>
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.255" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>