mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
71 lines
3.3 KiB
XML
71 lines
3.3 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
<Import Project="../common.props" />
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<Description>Implementation of the ISO, UDF, FAT and NTFS file systems is now fairly stable. VHD, XVA, VMDK and VDI disk formats are implemented, as well as read/write Registry support. The library also includes a simple iSCSI initiator, for accessing disks via iSCSI and an NFS client implementation.</Description>
|
|||
|
<AssemblyTitle>DiscUtils (for .NET and .NET Core), core library that supports parts of DiscUtils</AssemblyTitle>
|
|||
|
<Authors>Kenneth Bell;Quamotion;LordMike</Authors>
|
|||
|
<TargetFrameworks>netstandard1.5;net20;net40;net45</TargetFrameworks>
|
|||
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|||
|
<AssemblyName>DiscUtils.Core</AssemblyName>
|
|||
|
<AssemblyOriginatorKeyFile>../../SigningKey.snk</AssemblyOriginatorKeyFile>
|
|||
|
<SignAssembly>true</SignAssembly>
|
|||
|
<PackageId>DiscUtils.Core</PackageId>
|
|||
|
<PackageTags>DiscUtils;VHD;VDI;XVA;VMDK;ISO;NTFS;EXT2FS</PackageTags>
|
|||
|
<PackageProjectUrl>https://github.com/DiscUtils/DiscUtils</PackageProjectUrl>
|
|||
|
<PackageLicenseUrl>https://github.com/DiscUtils/DiscUtils/blob/master/LICENSE.txt</PackageLicenseUrl>
|
|||
|
<RepositoryType>git</RepositoryType>
|
|||
|
<RepositoryUrl>https://github.com/DiscUtils/DiscUtils</RepositoryUrl>
|
|||
|
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
|
|||
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
|||
|
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
|||
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
|||
|
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute>
|
|||
|
<GeneratePackageOnBuild Condition="'$(Configuration)' != 'Debug'">True</GeneratePackageOnBuild>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' ">
|
|||
|
<PackageReference Include="System.Security.AccessControl" Version="4.3.0" />
|
|||
|
<PackageReference Include="System.Xml.XmlDocument" Version="4.3.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net20' ">
|
|||
|
<Reference Include="System.Xml" />
|
|||
|
<Reference Include="System" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
|
|||
|
<Reference Include="System.Xml" />
|
|||
|
<Reference Include="System" />
|
|||
|
<Reference Include="Microsoft.CSharp" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.5'">
|
|||
|
<PackageReference Include="System.IO.FileSystem.DriveInfo">
|
|||
|
<Version>4.3.0</Version>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="System.Text.Encoding.CodePages">
|
|||
|
<Version>4.3.0</Version>
|
|||
|
</PackageReference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' ">
|
|||
|
<DefineConstants>$(DefineConstants);NETCORE</DefineConstants>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net20' ">
|
|||
|
<DefineConstants>$(DefineConstants);NET20</DefineConstants>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
|
|||
|
<Reference Include="System.Xml" />
|
|||
|
<Reference Include="System" />
|
|||
|
<Reference Include="Microsoft.CSharp" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\DiscUtils.Streams\DiscUtils.Streams.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|