50 lines
1.9 KiB
XML
50 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<TargetFrameworks>net48;net6.0</TargetFrameworks>
|
||
<PackageId>alterNERDtive.EDNA</PackageId>
|
||
<Version>0.0.1</Version>
|
||
<Company>alterNERDtive</Company>
|
||
<Authors>alterNERDtive</Authors>
|
||
<Description>EDNA is a site-agnostic library for accessing 3rd-party information about star systems in Elite Dangerous.</Description>
|
||
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
||
<PackageProjectUrl>https://alterNERDtive.github.io/EDNA</PackageProjectUrl>
|
||
<Copyright>© 2021–2022 alterNERDtive</Copyright>
|
||
<PackageIcon>glider.jpg</PackageIcon>
|
||
<PackageIconUrl />
|
||
<RepositoryUrl>https://github.com/alterNERDtive/EDNA</RepositoryUrl>
|
||
<RepositoryType>git</RepositoryType>
|
||
<PackageTags>Elite, EDSM, Spansh, EDTS</PackageTags>
|
||
<NeutralLanguage>en</NeutralLanguage>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\Edsm\Edsm.csproj" PrivateAssets="All" />
|
||
<ProjectReference Include="..\Edts\Edts.csproj" PrivateAssets="All" />
|
||
<ProjectReference Include="..\Spansh\Spansh.csproj" PrivateAssets="All" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<Reference Include="Microsoft.CSharp" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<None Include="..\.editorconfig" Link=".editorconfig" />
|
||
<None Include="..\glider.jpg">
|
||
<Pack>True</Pack>
|
||
<PackagePath></PackagePath>
|
||
</None>
|
||
</ItemGroup>
|
||
|
||
<PropertyGroup>
|
||
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
|
||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||
</PropertyGroup>
|
||
|
||
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
|
||
<ItemGroup>
|
||
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
|
||
</ItemGroup>
|
||
</Target>
|
||
|
||
</Project>
|