|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net8.0</TargetFramework> |
5 | | - <ImplicitUsings>enable</ImplicitUsings> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <IsPackable>true</IsPackable> |
8 | | - <PackageId>ArwynFr.IntegrationTesting</PackageId> |
9 | | - <Authors>ArwynFr</Authors> |
10 | | - <Description>This library provides utility classes for writing integration tests in dotnet using XUnit and WebApplicationFactory.</Description> |
11 | | - <Copyright>Copyright (c) ArwynFr 2024</Copyright> |
12 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
13 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
14 | | - <SonarQubeTestProject>false</SonarQubeTestProject> |
15 | | - <RepositoryUrl>https://github.com/ArwynFr/dotnet-integration-testing</RepositoryUrl> |
16 | | - <PackageTags>xunit;integration-testing;WebApplicationFactory</PackageTags> |
17 | | - <PackageIcon>logo.png</PackageIcon> |
18 | | - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
19 | | - </PropertyGroup> |
20 | | - |
21 | | - <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
22 | | - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
23 | | - </PropertyGroup> |
24 | | - |
25 | | - <ItemGroup> |
26 | | - <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.5" /> |
27 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.5" /> |
28 | | - <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> |
29 | | - <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> |
30 | | - <PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> |
31 | | - <PackageReference Include="OpenTelemetry.Exporter.InMemory" Version="1.8.1" /> |
32 | | - <PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" /> |
33 | | - <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.8.1" /> |
34 | | - <PackageReference Include="XUnit" Version="2.8.0" /> |
35 | | - </ItemGroup> |
36 | | - |
37 | | - <ItemGroup> |
38 | | - <None Include="../../.github/README.md" Pack="true" PackagePath="/" /> |
39 | | - <None Include="../logo.png" Pack="true" PackagePath="/" /> |
40 | | - </ItemGroup> |
41 | | - |
42 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net8.0</TargetFramework> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <IsPackable>true</IsPackable> |
| 8 | + <PackageId>ArwynFr.IntegrationTesting</PackageId> |
| 9 | + <Authors>ArwynFr</Authors> |
| 10 | + <Description>This library provides utility classes for writing integration tests in dotnet using XUnit and WebApplicationFactory.</Description> |
| 11 | + <Copyright>Copyright (c) ArwynFr 2024</Copyright> |
| 12 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 13 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 14 | + <SonarQubeTestProject>false</SonarQubeTestProject> |
| 15 | + <RepositoryUrl>https://github.com/ArwynFr/dotnet-integration-testing</RepositoryUrl> |
| 16 | + <PackageTags>xunit;integration-testing;WebApplicationFactory</PackageTags> |
| 17 | + <PackageIcon>logo.png</PackageIcon> |
| 18 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 22 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 23 | + </PropertyGroup> |
| 24 | + |
| 25 | + <ItemGroup> |
| 26 | + <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.6" /> |
| 27 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.6" /> |
| 28 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> |
| 29 | + <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> |
| 30 | + <PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> |
| 31 | + <PackageReference Include="OpenTelemetry.Exporter.InMemory" Version="1.8.1" /> |
| 32 | + <PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" /> |
| 33 | + <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.8.1" /> |
| 34 | + <PackageReference Include="XUnit" Version="2.8.1" /> |
| 35 | + </ItemGroup> |
| 36 | + |
| 37 | + <ItemGroup> |
| 38 | + <None Include="../../.github/README.md" Pack="true" PackagePath="/" /> |
| 39 | + <None Include="../logo.png" Pack="true" PackagePath="/" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | +</Project> |
0 commit comments