-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharpFileDialog.csproj
More file actions
29 lines (25 loc) · 1.05 KB
/
SharpFileDialog.csproj
File metadata and controls
29 lines (25 loc) · 1.05 KB
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>net6.0;netcoreapp3.1;netstandard2.0;netstandard2.1</TargetFrameworks>
<LangVersion>9</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Authors>TheDearbear</Authors>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/TheDearbear/SharpFileDialog</RepositoryUrl>
<PackageTags>dialog;csharp;files</PackageTags>
<Description>Rewrite of nativefiledailog for C#</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<IncludeContentInPack>true</IncludeContentInPack>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.46-beta">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="GtkSharp" Version="3.24.24.95" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" Pack="True" PackagePath="\" />
<None Include="README.md" Pack="True" PackagePath="\" />
</ItemGroup>
</Project>