Vanara/Windows.Shell/Vanara.Windows.Shell.csproj

94 lines
5.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<Description>Classes for Windows Shell items derived from the Vanara PInvoke libraries. Includes shell items, files, icons, links, and taskbar lists.</Description>
2020-01-17 10:50:25 -05:00
<Copyright>Copyright © 2017-2020</Copyright>
<AssemblyTitle>$(AssemblyName)</AssemblyTitle>
2020-01-17 10:50:25 -05:00
<VersionPrefix>3.1.9</VersionPrefix>
2020-01-03 18:46:48 -05:00
<TargetFrameworks>net20;net35;net40;net45;netcoreapp3.0;netcoreapp3.1</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
2017-12-14 19:34:14 -05:00
<AssemblyName>Vanara.Windows.Shell</AssemblyName>
<PackageId>$(AssemblyName)</PackageId>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
2017-12-14 19:34:14 -05:00
<RootNamespace>Vanara.Windows.Shell</RootNamespace>
<Authors>David Hall</Authors>
<PackageProjectUrl>https://github.com/dahall/vanara</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Vanara64x64.png</PackageIcon>
<RepositoryUrl>https://github.com/dahall/vanara</RepositoryUrl>
<PackageTags>pinvoke;vanara;net-extensions;interop</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<IncludeSource>true</IncludeSource>
<PackageReleaseNotes>Currently implements:
Classes
2019-11-25 09:02:08 -05:00
IComObject, ComClassFactory, CommandVerb, CommandVerbDictionary, ComObject, ControlPanel, IconLocation, IndirectResource, IndirectString, MessageEventArgs, MessageLoop, ProgId, PropertyBag, PropertyDescription, PropertyDescriptionList, PropertyStore, PropertyType, PropertyTypeList, RegBasedSettings, RegistryBasedVirtualDictionary&lt;T&gt;, SearchCondition, ShellAssociation, ShellCommand, ShellDropTarget, ShellExecuteCommand, ShellFileInfo, ShellFileNewOpEventArgs, ShellFileOperations, ShellFileOpEventArgs, ShellFolder, ShellImageList, ShellItem, ShellItemArray, ShellItemChangeEventArgs, ShellItemChangeWatcher, ShellItemPropertyStore, ShellItemPropertyUpdates, ShellLibrary, ShellLibraryFolders, ShellLink, ShellRegistrar, ShellSearch, ShellSearchViewSettings, TaskbarList
Enumerations
2019-02-11 21:38:05 -05:00
ChangeFilters, ExecutableType, FolderItemFilter, LibraryFolderFilter, LibraryViewTemplate, LinkResolution, OperationFlags, ShellIconType, ShellImageSize, ShellItemAttribute, ShellItemComparison, ShellItemDisplayString, ShellItemGetImageOptions, ShellItemToolTipOptions, TaskbarButtonProgressState, TransferFlags, VerbMultiSelectModel, VerbPosition, VerbSelectionModel
</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2018-10-26 14:24:07 -04:00
<LangVersion>latest</LangVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\Vanara.snk</AssemblyOriginatorKeyFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="..\docs\icons\Vanara64x64.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Compile Remove="_InProgress_\**\*" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('net2')) Or $(TargetFramework.StartsWith('net3')) Or $(TargetFramework.StartsWith('net4')) ">
<Reference Include="System.Design" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('netcore')) ">
<PackageReference Include="System.IO.FileSystem.AccessControl">
<Version>4.6.0</Version>
</PackageReference>
</ItemGroup>
2019-02-05 16:25:27 -05:00
<ItemGroup>
2019-02-22 18:11:12 -05:00
<Compile Remove="TaskBar\~AssocUtil.cs" />
<Compile Remove="TaskBar\~ImageIndexer.cs" />
<Compile Remove="TaskBar\~JumpList.cs" />
<Compile Remove="TaskBar\~TaskbarButton.cs" />
<Compile Remove="TaskBar\~TaskbarButtonThumbnail.cs" />
<Compile Remove="TaskBar\~TaskbarButtonThumbnails.cs" />
<Compile Remove="TaskBar\~ThumbnailToolbar.cs" />
<Compile Remove="TaskBar\~ThumbnailToolbarButton.cs" />
<Compile Remove="TaskBar\~ThumbnailToolbarButtonCollection.cs" />
2019-02-05 16:25:27 -05:00
</ItemGroup>
<ItemGroup>
2019-02-22 18:11:12 -05:00
<None Include="TaskBar\~AssocUtil.cs" />
<None Include="TaskBar\~ImageIndexer.cs" />
<None Include="TaskBar\~JumpList.cs" />
<None Include="TaskBar\~TaskbarButton.cs" />
<None Include="TaskBar\~TaskbarButtonThumbnail.cs" />
<None Include="TaskBar\~TaskbarButtonThumbnails.cs" />
<None Include="TaskBar\~ThumbnailToolbar.cs" />
<None Include="TaskBar\~ThumbnailToolbarButton.cs" />
<None Include="TaskBar\~ThumbnailToolbarButtonCollection.cs" />
2019-02-05 16:25:27 -05:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Vanara.Core.csproj" />
<ProjectReference Include="..\PInvoke\Shared\Vanara.PInvoke.Shared.csproj" />
<ProjectReference Include="..\PInvoke\ComCtl32\Vanara.PInvoke.ComCtl32.csproj" />
<ProjectReference Include="..\PInvoke\Ole\Vanara.PInvoke.Ole.csproj" />
<ProjectReference Include="..\PInvoke\Shell32\Vanara.PInvoke.Shell32.csproj" />
<ProjectReference Include="..\PInvoke\User32\Vanara.PInvoke.User32.csproj" />
<ProjectReference Include="..\PInvoke\SearchApi\Vanara.PInvoke.SearchApi.csproj" />
2019-05-25 21:47:54 -04:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
2018-03-26 17:06:12 -04:00
</Project>