-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (25 loc) · 1.16 KB
/
Copy pathDirectory.Build.props
File metadata and controls
30 lines (25 loc) · 1.16 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
<Project>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.10.91" PrivateAssets="all" />
</ItemGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>preview</LangVersion>
<Deterministic>true</Deterministic>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<Authors>JDH Productions LLC</Authors>
<Company>JDH Productions LLC</Company>
<Product>LocalTranscriber</Product>
<Description>Local voice-to-text transcription using Whisper with optional LLM formatting</Description>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/JerrettDavis/LocalTranscriber</RepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>