22 lines
822 B
XML
22 lines
822 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageVersion>0.5.0</PackageVersion>
|
|
<Nullable>disable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PackageLicenseExpression>Zlib</PackageLicenseExpression>
|
|
<Authors>milleniumbug</Authors>
|
|
<PackageProjectUrl>https://github.com/milleniumbug/NativeFileDialogSharp</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/milleniumbug/NativeFileDialogSharp</RepositoryUrl>
|
|
<Description>Cross-platform native file dialog controls for Windows, Linux and macOS</Description>
|
|
<TargetFramework>net8</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="runtimes\**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|