-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusis.Net.Bits.csproj
54 lines (48 loc) · 2.24 KB
/
usis.Net.Bits.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net6.0-windows</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Version>3.1.1</Version>
<Authors>Udo</Authors>
<Company>usis GmbH</Company>
<Product>usis .NET Class Libraries</Product>
<Description>usis Background Intelligent Transfer Service (BITS) Class Library</Description>
<Copyright>Copyright © 2017-2024 usis GmbH</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/usis-software/usis.Net.Bits</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>usis.icon.64x64.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>The usis Background Intelligent Transfer Service Class Library provides .NET wrapper types for the BITS API which is exposed by Microsoft through the Component Object Model (COM).</PackageReleaseNotes>
<PackageTags>usis BITS Interop HTTP Background Transfer upload download</PackageTags>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>usis.Net.Bits.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE.md" Pack="true" PackagePath="\" />
<None Include="usis.icon.64x64.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Folder Include="Interop\" />
</ItemGroup>
<ItemGroup>
<Compile Update="Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>