-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
30 lines (30 loc) · 1.32 KB
/
Directory.Build.props
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
<Project>
<!-- Build -->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<ProjectRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), "DeepgramSharp.sln"))</ProjectRoot>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<TargetFramework>net8.0</TargetFramework>
<Version>1.2.0</Version>
<Version Condition="'$(Nightly)' != ''">$(Version)-nightly-$(Nightly)</Version>
<Version Condition="'$(PR)' != ''">$(Version)-pr-$(PR)</Version>
</PropertyGroup>
<!-- Nuget -->
<PropertyGroup>
<Authors>OoLunar</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/OoLunar/DeepgramSharp</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>deepgram, speech-to-text, captions, speech-recognition</PackageTags>
<RepositoryType>Git</RepositoryType>
<RepositoryUrl>https://github.com/OoLunar/DeepgramSharp</RepositoryUrl>
</PropertyGroup>
<!-- Resource Files -->
<ItemGroup>
<None Include="$(ProjectRoot)/LICENSE" Pack="true" PackagePath=""/>
<None Include="$(ProjectRoot)/README.md" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>