-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (31 loc) · 1.65 KB
/
Copy pathDirectory.Build.props
File metadata and controls
32 lines (31 loc) · 1.65 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
<Project>
<PropertyGroup>
<Authors>Iván Montiel Cardona</Authors>
<Company>begeistert</Company>
<RepositoryUrl>https://github.com/PyMCU/RP2040Sharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- The whole project is BUSL-1.1 (converts to MIT on the Change Date). nuget.org
rejects BUSL-1.1 as an SPDX expression, so we ship it as a packaged file. Each
packable project includes LICENSE-BUSL.txt via a <None Pack="true"> item. -->
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>LICENSE-BUSL.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/PyMCU/RP2040Sharp</PackageProjectUrl>
<PackageTags>rp2040;raspberry-pi;emulator;cortex-m0plus;microcontroller;simulation</PackageTags>
<Copyright>Copyright © 2024-2026 Iván Montiel Cardona</Copyright>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- MinVer: versioning automático desde git tags (v1.0.0) -->
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerVerbosity>minimal</MinVerVerbosity>
<MinVerDefaultPreReleaseIdentifiers>preview</MinVerDefaultPreReleaseIdentifiers>
<!-- Shared across all projects -->
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' != 'false'">
<PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="all" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="README.md" Visible="false" />
</ItemGroup>
</Project>