-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSeeSharpMovies.csproj
38 lines (30 loc) · 1.26 KB
/
SeeSharpMovies.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MongoDB.Driver" Version="2.23.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="SeeSharpMovies.Test\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="SeeSharpMovies.Test\**" />
</ItemGroup>
<ItemGroup>
<Content Remove="SeeSharpMovies.Test\**" />
</ItemGroup>
<ItemGroup>
<None Remove="SeeSharpMovies.Test\**" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="SeeSharpMovies.Test\bin\Debug\net8.0\SeeSharpMovies.Test.deps.json" />
<_ContentIncludedByDefault Remove="SeeSharpMovies.Test\bin\Debug\net8.0\SeeSharpMovies.Test.runtimeconfig.json" />
<_ContentIncludedByDefault Remove="SeeSharpMovies.Test\obj\Debug\net8.0\SeeSharpMovies.Test.sourcelink.json" />
<_ContentIncludedByDefault Remove="SeeSharpMovies.Test\obj\project.assets.json" />
<_ContentIncludedByDefault Remove="SeeSharpMovies.Test\obj\project.packagespec.json" />
<_ContentIncludedByDefault Remove="SeeSharpMovies.Test\obj\SeeSharpMovies.Test.csproj.nuget.dgspec.json" />
</ItemGroup>
</Project>