Skip to content

Commit

Permalink
Merge pull request #1063 from WildernessLabs/pcan_meta
Browse files Browse the repository at this point in the history
Add csproj metadata
  • Loading branch information
ctacke authored Jul 30, 2024
2 parents 1ee1683 + 1fb45ce commit da9efc3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,27 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>icon.png</PackageIcon>
<AssemblyName>PCanBasic</AssemblyName>
<Authors>Wilderness Labs, Inc</Authors>
<Company>Wilderness Labs, Inc</Company>
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/Meadow.Foundation/</PackageProjectUrl>
<PackageId>Meadow.Foundation.ICs.CAN.PCanBasic</PackageId>
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.Foundation</RepositoryUrl>
<PackageTags>Meadow.Foundation, CAN, PCanBasic</PackageTags>
<Version>0.1.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>PCAN-Basic USB CAN Controller for Windows</Description>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\..\icon.png" Link="icon.png">
<PackagePath></PackagePath>
<Pack>true</Pack>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Peak.PCANBasic.NET" Version="4.8.2.897" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

namespace ICs.IOExpanders.PCanBasic;

/// <summary>
/// Represents a PCAN Basic
/// </summary>
public class PCanBus : ICanBus
{
/// <inheritdoc/>
Expand Down
5 changes: 4 additions & 1 deletion Source/Meadow.Foundation.sln
Original file line number Diff line number Diff line change
Expand Up @@ -1601,6 +1601,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{3D40
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PCanBasic_Sample", "Meadow.Foundation.Peripherals\ICs.IOExpanders.PCanBasic\Samples\PCanBasic_Sample\PCanBasic_Sample.csproj", "{506044BB-BEC1-42D1-AF84-CD28D4E2911A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{97463BD7-A424-4720-B737-CB1D9A9C6AEF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -4655,7 +4657,7 @@ Global
{18785D65-35BB-4DCD-89EF-0D1DFA3F1463} = {066DBCFD-A21D-4FD2-87A5-B88363158149}
{5C9C0932-CA09-4599-8546-8373F79B37B7} = {A1917BD0-881F-4775-88D9-38D42D448CF5}
{066DBCFD-A21D-4FD2-87A5-B88363158149} = {5C9C0932-CA09-4599-8546-8373F79B37B7}
{489028C0-5B3C-46E1-800E-A0359E815CF9} = {066DBCFD-A21D-4FD2-87A5-B88363158149}
{489028C0-5B3C-46E1-800E-A0359E815CF9} = {97463BD7-A424-4720-B737-CB1D9A9C6AEF}
{8A0FAC4E-473E-4CEC-9325-71E294343D34} = {9F4EEBFB-F2B6-4B28-ABAD-D219F4AB15F3}
{74834576-1C4C-41F0-8F0A-C2A34021665B} = {7C30F342-6DD6-430C-B872-4515D01F2D4E}
{7C30F342-6DD6-430C-B872-4515D01F2D4E} = {8A0FAC4E-473E-4CEC-9325-71E294343D34}
Expand All @@ -4670,6 +4672,7 @@ Global
{48CA0124-A227-4F35-BEFB-FF07F1CE6D20} = {5C9C0932-CA09-4599-8546-8373F79B37B7}
{3D40446F-F902-4C89-93B9-2BE094BDE136} = {48CA0124-A227-4F35-BEFB-FF07F1CE6D20}
{506044BB-BEC1-42D1-AF84-CD28D4E2911A} = {3D40446F-F902-4C89-93B9-2BE094BDE136}
{97463BD7-A424-4720-B737-CB1D9A9C6AEF} = {066DBCFD-A21D-4FD2-87A5-B88363158149}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AF7CA16F-8C38-4546-87A2-5DAAF58A1520}
Expand Down

0 comments on commit da9efc3

Please sign in to comment.