-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample.csproj
More file actions
28 lines (28 loc) · 918 Bytes
/
Example.csproj
File metadata and controls
28 lines (28 loc) · 918 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<Compile Remove="WebApi/**/*.cs" />
<None Remove="WebApi/**/*" />
</ItemGroup>
<ItemGroup>
<None Update="cats.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="new_cats.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../Weaviate.Client.Managed/Weaviate.Client.Managed.csproj" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>