This repository was archived by the owner on Sep 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDeviceProgramming.csproj
More file actions
39 lines (35 loc) · 1.5 KB
/
DeviceProgramming.csproj
File metadata and controls
39 lines (35 loc) · 1.5 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Authors>Benedek Kupper</Authors>
<Description>Standalone C# library for device firmware programming</Description>
<Copyright>Copyright © Benedek Kupper 2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/IntergatedCircuits/DeviceProgramming</PackageProjectUrl>
<RepositoryUrl>https://github.com/IntergatedCircuits/DeviceProgramming</RepositoryUrl>
<PackageTags>Device Firmware Programming S19 IntelHEX DFU DFUSE</PackageTags>
<PackageReleaseNotes>Add DFU Upload methods</PackageReleaseNotes>
<Company>IntergatedCircuits</Company>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.1.0</Version>
<FileVersion>1.1.0</FileVersion>
<AssemblyVersion>1.1.0</AssemblyVersion>
<EnablePackageValidation>true</EnablePackageValidation>
<!-- <PackageValidationBaselineVersion>1.0.3</PackageValidationBaselineVersion> -->
<EnableNETAnalyzers>True</EnableNETAnalyzers>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>