-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
40 lines (35 loc) · 1.53 KB
/
Directory.Build.props
File metadata and controls
40 lines (35 loc) · 1.53 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
36
37
38
39
<Project>
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0;netstandard2.1;netstandard2.0;net48</TargetFrameworks>
<OutputPath>../$(Configuration)/</OutputPath>
<LangVersion>Latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<DebugType>portable</DebugType>
<PackageId>LTRData.$(MSBuildProjectName)</PackageId>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Company>LTR Data</Company>
<PackageOutputPath>$(LocalNuGetPath)</PackageOutputPath>
<Copyright>Copyright (c) Olof Lagerkvist, LTR Data 2022 - 2025</Copyright>
<Version>1.0.0.14</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Company>LTR Data</Company>
<Authors>Olof Lagerkvist</Authors>
<PackageProjectUrl>https://github.com/LTRData/FuseDotNet</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageVersion>$(Version)</PackageVersion>
<RepositoryUrl>https://github.com/LTRData/FuseDotNet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>file files disk directory storage filesystem io filestore FAT NTFS FUSE</PackageTags>
<SignAssembly>false</SignAssembly>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Link="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>