-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathEngine.csproj
More file actions
32 lines (29 loc) · 1.43 KB
/
Copy pathEngine.csproj
File metadata and controls
32 lines (29 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Nullable>enable</Nullable>
<TargetFramework>net9.0</TargetFramework>
<PackageId>textrude.engine</PackageId>
<Description>The engine for Textrude</Description>
<Authors>Neil MacMullen</Authors>
<Copyright>Copyright Neil MacMullen 2021</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/NeilMacMullen/Textrude</PackageProjectUrl>
<PackageReleaseNotes>First release</PackageReleaseNotes>
<PackageTags></PackageTags>
<IncludeSymbols>true</IncludeSymbols>
<RepositoryUrl>https://github.com/NeilMacMullen/Textrude.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>main</RepositoryBranch>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AwesomeAssertions" Version="9.1.0" />
<PackageReference Include="CsvHelper" Version="33.1.0" />
<PackageReference Include="Humanizer" Version="2.14.1" />
<PackageReference Include="Microsoft.Recognizers.Text" Version="1.8.13" />
<PackageReference Include="Microsoft.Recognizers.Text.DateTime" Version="1.8.13" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Scriban" Version="6.2.1" />
<PackageReference Include="System.Collections.Immutable" Version="9.0.7" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
</ItemGroup>
</Project>