|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 |
| - <PropertyGroup> |
4 |
| - <TargetFramework>net6.0</TargetFramework> |
5 |
| - <ImplicitUsings>disable</ImplicitUsings> |
6 |
| - <Nullable>enable</Nullable> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net6.0</TargetFramework> |
| 5 | + <ImplicitUsings>disable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <IsPackable>false</IsPackable> |
| 8 | + <NoWarn>$(NoWarn);SA1600</NoWarn> |
| 9 | + </PropertyGroup> |
7 | 10 |
|
8 |
| - <IsPackable>false</IsPackable> |
9 |
| - </PropertyGroup> |
| 11 | + <ItemGroup> |
| 12 | + <PackageReference Include="FluentAssertions" Version="6.7.0" /> |
| 13 | + <PackageReference Include="LiquidTestReports.Markdown" Version="1.0.9" /> |
| 14 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" /> |
| 15 | + <PackageReference Include="JsonSchema.Net" Version="2.0.1" /> |
| 16 | + <PackageReference Include="NUnit" Version="3.13.2" /> |
| 17 | + <PackageReference Include="NUnit3TestAdapter" Version="4.0.0" /> |
| 18 | + <PackageReference Include="coverlet.collector" Version="3.1.2"> |
| 19 | + <PrivateAssets>all</PrivateAssets> |
| 20 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 21 | + </PackageReference> |
| 22 | + <PackageReference Include="ReportGenerator" Version="5.1.2" /> |
| 23 | + <PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> |
| 24 | + <PrivateAssets>all</PrivateAssets> |
| 25 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 26 | + </PackageReference> |
| 27 | + </ItemGroup> |
10 | 28 |
|
11 |
| - <ItemGroup> |
12 |
| - <PackageReference Include="FluentAssertions" Version="6.7.0" /> |
13 |
| - <PackageReference Include="LiquidTestReports.Markdown" Version="1.0.9" /> |
14 |
| - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" /> |
15 |
| - <PackageReference Include="JsonSchema.Net" Version="2.0.1" /> |
16 |
| - <PackageReference Include="NUnit" Version="3.13.2" /> |
17 |
| - <PackageReference Include="NUnit3TestAdapter" Version="4.0.0" /> |
18 |
| - <PackageReference Include="coverlet.collector" Version="3.1.2"> |
19 |
| - <PrivateAssets>all</PrivateAssets> |
20 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
21 |
| - </PackageReference> |
22 |
| - <PackageReference Include="ReportGenerator" Version="5.1.2" /> |
23 |
| - <PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> |
24 |
| - <PrivateAssets>all</PrivateAssets> |
25 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
26 |
| - </PackageReference> |
27 |
| - </ItemGroup> |
| 29 | + <ItemGroup> |
| 30 | + <ProjectReference Include="..\..\src\LEGO.AsyncAPI.Bindings\LEGO.AsyncAPI.Bindings.csproj" /> |
| 31 | + <ProjectReference Include="..\..\src\LEGO.AsyncAPI.Readers\LEGO.AsyncAPI.Readers.csproj" /> |
| 32 | + <ProjectReference Include="..\..\src\LEGO.AsyncAPI\LEGO.AsyncAPI.csproj" /> |
| 33 | + </ItemGroup> |
28 | 34 |
|
29 |
| - <ItemGroup> |
30 |
| - <ProjectReference Include="..\..\src\LEGO.AsyncAPI.Bindings\LEGO.AsyncAPI.Bindings.csproj" /> |
31 |
| - <ProjectReference Include="..\..\src\LEGO.AsyncAPI.Readers\LEGO.AsyncAPI.Readers.csproj" /> |
32 |
| - <ProjectReference Include="..\..\src\LEGO.AsyncAPI\LEGO.AsyncAPI.csproj" /> |
33 |
| - </ItemGroup> |
34 |
| - |
35 |
| - <ItemGroup> |
36 |
| - <None Remove="readers\Basic.yaml" /> |
37 |
| - </ItemGroup> |
38 |
| - <ItemGroup> |
39 |
| - <None Remove="readers\samples\AsyncApi\AsyncApiChannelObject\Basic.yaml" /> |
40 |
| - <None Remove="readers\samples\AsyncApi\AsyncApiInfoObject\Advanced.yaml" /> |
41 |
| - <None Remove="readers\samples\AsyncApi\AsyncApiInfoObject\Basic.yaml" /> |
42 |
| - <None Remove="readers\samples\AsyncApi\Basic.yaml" /> |
43 |
| - <None Remove="readers\samples\AsyncApi\schema-v2.3.0.json" /> |
44 |
| - <None Remove="stylecop.json" /> |
45 |
| - </ItemGroup> |
46 |
| - <ItemGroup> |
47 |
| - <AdditionalFiles Include="stylecop.json" /> |
48 |
| - </ItemGroup> |
49 |
| - <ItemGroup> |
50 |
| - <Folder Include="Attributes\" /> |
51 |
| - </ItemGroup> |
52 |
| - <ItemGroup> |
53 |
| - <None Include="..\..\.editorconfig" Link=".editorconfig" /> |
54 |
| - </ItemGroup> |
| 35 | + <ItemGroup> |
| 36 | + <None Remove="readers\Basic.yaml" /> |
| 37 | + </ItemGroup> |
| 38 | + <ItemGroup> |
| 39 | + <None Remove="readers\samples\AsyncApi\AsyncApiChannelObject\Basic.yaml" /> |
| 40 | + <None Remove="readers\samples\AsyncApi\AsyncApiInfoObject\Advanced.yaml" /> |
| 41 | + <None Remove="readers\samples\AsyncApi\AsyncApiInfoObject\Basic.yaml" /> |
| 42 | + <None Remove="readers\samples\AsyncApi\Basic.yaml" /> |
| 43 | + <None Remove="readers\samples\AsyncApi\schema-v2.3.0.json" /> |
| 44 | + <None Remove="stylecop.json" /> |
| 45 | + </ItemGroup> |
| 46 | + <ItemGroup> |
| 47 | + <AdditionalFiles Include="stylecop.json" /> |
| 48 | + </ItemGroup> |
| 49 | + <ItemGroup> |
| 50 | + <Folder Include="Attributes\" /> |
| 51 | + </ItemGroup> |
| 52 | + <ItemGroup> |
| 53 | + <None Include="..\..\.editorconfig" Link=".editorconfig" /> |
| 54 | + </ItemGroup> |
55 | 55 | </Project>
|
0 commit comments