|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net8.0</TargetFramework> |
5 | | - <LangVersion>Latest</LangVersion> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <ImplicitUsings>enable</ImplicitUsings> |
8 | | - <IsPackable>false</IsPackable> |
9 | | - <RootNamespace>Squidex.Events</RootNamespace> |
10 | | - <NeutralLanguage>en</NeutralLanguage> |
11 | | - </PropertyGroup> |
12 | | - |
13 | | - <ItemGroup> |
14 | | - <None Remove="appSettings.json" /> |
15 | | - </ItemGroup> |
16 | | - |
17 | | - <ItemGroup> |
18 | | - <PackageReference Include="coverlet.collector" Version="6.0.4"> |
19 | | - <PrivateAssets>all</PrivateAssets> |
20 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
21 | | - </PackageReference> |
22 | | - <PackageReference Include="FakeItEasy" Version="8.3.0" /> |
23 | | - <PackageReference Include="FluentAssertions" Version="8.2.0" /> |
24 | | - <PackageReference Include="Meziantou.Analyzer" Version="2.0.179"> |
25 | | - <PrivateAssets>all</PrivateAssets> |
26 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
27 | | - </PackageReference> |
28 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.16" /> |
29 | | - <PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" /> |
30 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" /> |
31 | | - <PackageReference Include="RefactoringEssentials" Version="5.6.0" PrivateAssets="all" /> |
32 | | - <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" /> |
33 | | - <PackageReference Include="System.Linq.Async" Version="6.0.1" /> |
34 | | - <PackageReference Include="System.Text.Json" Version="8.0.6" /> |
35 | | - <PackageReference Include="Testcontainers.EventStoreDb" Version="4.1.0" /> |
36 | | - <PackageReference Include="xunit" Version="2.9.3" /> |
37 | | - <PackageReference Include="xunit.runner.visualstudio" Version="3.0.2"> |
38 | | - <PrivateAssets>all</PrivateAssets> |
39 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
40 | | - </PackageReference> |
41 | | - </ItemGroup> |
42 | | - |
43 | | - <ItemGroup> |
44 | | - <Using Include="FakeItEasy" /> |
45 | | - <Using Include="FluentAssertions" /> |
46 | | - <Using Include="Xunit" /> |
47 | | - </ItemGroup> |
48 | | - |
49 | | - <ItemGroup> |
50 | | - <AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" /> |
51 | | - </ItemGroup> |
52 | | - |
53 | | - <ItemGroup> |
54 | | - <Content Include="appSettings.Development.json"> |
55 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
56 | | - <ExcludeFromSingleFile>true</ExcludeFromSingleFile> |
57 | | - <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
58 | | - </Content> |
59 | | - <Content Include="appSettings.json"> |
60 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
61 | | - <ExcludeFromSingleFile>true</ExcludeFromSingleFile> |
62 | | - <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
63 | | - </Content> |
64 | | - </ItemGroup> |
65 | | - |
66 | | - <ItemGroup> |
67 | | - <ProjectReference Include="..\..\utils\TestHelpers\TestHelpers.csproj" /> |
68 | | - <ProjectReference Include="..\Squidex.Events.EntityFramework\Squidex.Events.EntityFramework.csproj" /> |
69 | | - <ProjectReference Include="..\Squidex.Events.GetEventStore\Squidex.Events.GetEventStore.csproj" /> |
70 | | - <ProjectReference Include="..\Squidex.Events.Mongo\Squidex.Events.Mongo.csproj" /> |
71 | | - <ProjectReference Include="..\Squidex.Events\Squidex.Events.csproj" /> |
72 | | - </ItemGroup> |
73 | | - |
74 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net8.0</TargetFramework> |
| 5 | + <LangVersion>Latest</LangVersion> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <ImplicitUsings>enable</ImplicitUsings> |
| 8 | + <IsPackable>false</IsPackable> |
| 9 | + <RootNamespace>Squidex.Events</RootNamespace> |
| 10 | + <NeutralLanguage>en</NeutralLanguage> |
| 11 | + </PropertyGroup> |
| 12 | + |
| 13 | + <ItemGroup> |
| 14 | + <None Remove="appSettings.json" /> |
| 15 | + </ItemGroup> |
| 16 | + |
| 17 | + <ItemGroup> |
| 18 | + <PackageReference Include="coverlet.collector" Version="6.0.4"> |
| 19 | + <PrivateAssets>all</PrivateAssets> |
| 20 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 21 | + </PackageReference> |
| 22 | + <PackageReference Include="FakeItEasy" Version="8.3.0" /> |
| 23 | + <PackageReference Include="FluentAssertions" Version="8.2.0" /> |
| 24 | + <PackageReference Include="Meziantou.Analyzer" Version="2.0.179"> |
| 25 | + <PrivateAssets>all</PrivateAssets> |
| 26 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 27 | + </PackageReference> |
| 28 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.16" /> |
| 29 | + <PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" /> |
| 30 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" /> |
| 31 | + <PackageReference Include="RefactoringEssentials" Version="5.6.0" PrivateAssets="all" /> |
| 32 | + <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" /> |
| 33 | + <PackageReference Include="System.Linq.Async" Version="6.0.1" /> |
| 34 | + <PackageReference Include="System.Text.Json" Version="8.0.6" /> |
| 35 | + <PackageReference Include="Testcontainers.EventStoreDb" Version="4.1.0" /> |
| 36 | + <PackageReference Include="xunit" Version="2.9.3" /> |
| 37 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.0.2"> |
| 38 | + <PrivateAssets>all</PrivateAssets> |
| 39 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 40 | + </PackageReference> |
| 41 | + </ItemGroup> |
| 42 | + |
| 43 | + <ItemGroup> |
| 44 | + <Using Include="FakeItEasy" /> |
| 45 | + <Using Include="FluentAssertions" /> |
| 46 | + <Using Include="Xunit" /> |
| 47 | + </ItemGroup> |
| 48 | + |
| 49 | + <ItemGroup> |
| 50 | + <AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" /> |
| 51 | + </ItemGroup> |
| 52 | + |
| 53 | + <ItemGroup> |
| 54 | + <ProjectReference Include="..\..\utils\TestHelpers\TestHelpers.csproj" /> |
| 55 | + <ProjectReference Include="..\Squidex.Events.EntityFramework\Squidex.Events.EntityFramework.csproj" /> |
| 56 | + <ProjectReference Include="..\Squidex.Events.GetEventStore\Squidex.Events.GetEventStore.csproj" /> |
| 57 | + <ProjectReference Include="..\Squidex.Events.Mongo\Squidex.Events.Mongo.csproj" /> |
| 58 | + <ProjectReference Include="..\Squidex.Events\Squidex.Events.csproj" /> |
| 59 | + </ItemGroup> |
| 60 | + |
| 61 | +</Project> |
0 commit comments