Skip to content

Commit 6af35ee

Browse files
committed
chore: add dependency on yaml2jsonnode in order to convert yaml to json
1 parent d94ad25 commit 6af35ee

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/OpenAPI.WebApiGenerator/OpenAPI.WebApiGenerator.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
<None Include="$(PkgSharpYaml)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
4444
<None Include="$(PkgMicrosoft_Bcl_HashCode)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
4545
<None Include="$(PkgNodaTime)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
46+
<None Include="$(PkgYaml2JsonNode)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
47+
<None Include="$(PkgSystem_Text_Json)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
4648
</ItemGroup>
4749

4850
<ItemGroup>
@@ -65,6 +67,8 @@
6567
</PackageReference>
6668
<PackageReference Include="SharpYaml" Version="2.1.1" OutputItemType="Analyzer" PrivateAssets="all" GeneratePathProperty="true" />
6769
<PackageReference Include="NodaTime" Version="3.2.1" OutputItemType="Analyzer" PrivateAssets="all" GeneratePathProperty="true" />
70+
<PackageReference Include="System.Text.Json" Version="9.0.12" OutputItemType="Analyzer" PrivateAssets="all" GeneratePathProperty="true" />
71+
<PackageReference Include="Yaml2JsonNode" Version="2.2.0" OutputItemType="Analyzer" PrivateAssets="all" GeneratePathProperty="true" />
6872
</ItemGroup>
6973

7074
<Target Name="GetDependencyTargetPaths">
@@ -75,6 +79,8 @@
7579
<TargetPathWithTargetPlatformMoniker Include="$(PkgSharpYaml)\lib\netstandard2.0\*.dll" IncludeRuntimeDependency="false" />
7680
<TargetPathWithTargetPlatformMoniker Include="$(PkgMicrosoft_Bcl_HashCode)\lib\netstandard2.0\*.dll" IncludeRuntimeDependency="false" />
7781
<TargetPathWithTargetPlatformMoniker Include="$(PkgNodaTime)\lib\netstandard2.0\*.dll" IncludeRuntimeDependency="false" />
82+
<TargetPathWithTargetPlatformMoniker Include="$(PkgYaml2JsonNode)\lib\netstandard2.0\*.dll" IncludeRuntimeDependency="false" />
83+
<TargetPathWithTargetPlatformMoniker Include="$(PkgSystem_Text_Json)\lib\netstandard2.0\*.dll" IncludeRuntimeDependency="false" />
7884
</ItemGroup>
7985
</Target>
8086

0 commit comments

Comments
 (0)