-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTinyDialogsNet.csproj
More file actions
35 lines (32 loc) · 1.55 KB
/
Copy pathTinyDialogsNet.csproj
File metadata and controls
35 lines (32 loc) · 1.55 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
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>2.0.0</PackageVersion>
<Title>TinyDialogsNet</Title>
<Authors>nedoxff</Authors>
<Description>a C# wrapper around tinyfiledialogs.</Description>
<Copyright>nedoxff</Copyright>
<PackageProjectUrl>https://github.com/nedoxff/TinyDialogsNet</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.nuget.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/nedoxff/TinyDialogsNet</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>file dialog io</PackageTags>
<AssemblyVersion>2.0.0</AssemblyVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="runtimes/**" Pack="true" PackagePath="runtimes">
<Link>runtimes/%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="README.nuget.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
</Project>