-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDeviceProgramming.csproj
29 lines (26 loc) · 1.18 KB
/
DeviceProgramming.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Authors>Benedek Kupper</Authors>
<Version>1.0.3</Version>
<Description>Standalone C# library for device firmware programming</Description>
<Copyright>Copyright © Benedek Kupper 2021</Copyright>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageProjectUrl>https://github.com/IntergatedCircuits/DeviceProgramming</PackageProjectUrl>
<RepositoryUrl>https://github.com/IntergatedCircuits/DeviceProgramming</RepositoryUrl>
<PackageTags>Device Firmware Programming S19 IntelHEX DFU DFUSE</PackageTags>
<AssemblyVersion>1.0.3</AssemblyVersion>
<FileVersion>1.0.3</FileVersion>
<PackageReleaseNotes>Change project to multitarget</PackageReleaseNotes>
<Company>IntergatedCircuits</Company>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>