-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTimePlanning.Pn.Test.csproj
More file actions
41 lines (35 loc) · 1.51 KB
/
TimePlanning.Pn.Test.csproj
File metadata and controls
41 lines (35 loc) · 1.51 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
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<IsPublishable>false</IsPublishable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="NUnit" Version="4.4.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.11.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter" Version="5.2.0" />
<PackageReference Include="Testcontainers" Version="4.8.1" />
<PackageReference Include="Testcontainers.MariaDb" Version="4.8.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TimePlanning.Pn\TimePlanning.Pn.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="SQL\" />
</ItemGroup>
<ItemGroup>
<None Remove="SQL\420_eform-angular-time-planning-plugin.sql" />
<EmbeddedResource Include="SQL\420_eform-angular-time-planning-plugin.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<None Remove="SQL\420_SDK.sql" />
<EmbeddedResource Include="SQL\420_SDK.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
</Project>