| 
 | 1 | +<Project Sdk="Microsoft.NET.Sdk">  | 
 | 2 | + | 
 | 3 | +  <PropertyGroup>  | 
 | 4 | +    <TargetFramework>net6.0</TargetFramework>  | 
 | 5 | +    <ImplicitUsings>enable</ImplicitUsings>  | 
 | 6 | +    <Nullable>enable</Nullable>  | 
 | 7 | + | 
 | 8 | +    <IsPackable>false</IsPackable>  | 
 | 9 | +  </PropertyGroup>  | 
 | 10 | + | 
 | 11 | +  <ItemGroup>  | 
 | 12 | +    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0-preview-20220612-01" />  | 
 | 13 | +    <PackageReference Include="Moq" Version="4.18.1" />  | 
 | 14 | +    <PackageReference Include="xunit" Version="2.4.2-pre.12" />  | 
 | 15 | +    <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">  | 
 | 16 | +      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>  | 
 | 17 | +      <PrivateAssets>all</PrivateAssets>  | 
 | 18 | +    </PackageReference>  | 
 | 19 | +    <PackageReference Include="coverlet.collector" Version="3.1.2">  | 
 | 20 | +      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>  | 
 | 21 | +      <PrivateAssets>all</PrivateAssets>  | 
 | 22 | +    </PackageReference>  | 
 | 23 | +  </ItemGroup>  | 
 | 24 | + | 
 | 25 | +  <ItemGroup>  | 
 | 26 | +    <ProjectReference Include="..\src\Microsoft.OpenApi.Hidi\Microsoft.OpenApi.Hidi.csproj" />  | 
 | 27 | +    <ProjectReference Include="..\src\Microsoft.OpenApi\Microsoft.OpenApi.csproj" />  | 
 | 28 | +  </ItemGroup>  | 
 | 29 | + | 
 | 30 | +  <ItemGroup>  | 
 | 31 | +    <Compile Update="UtilityFiles\OpenApiDocumentMock.cs">  | 
 | 32 | +      <CopyToOutputDirectory>Always</CopyToOutputDirectory>  | 
 | 33 | +    </Compile>  | 
 | 34 | +  </ItemGroup>  | 
 | 35 | + | 
 | 36 | +  <ItemGroup>  | 
 | 37 | +    <None Update="UtilityFiles\postmanCollection_ver1.json">  | 
 | 38 | +      <CopyToOutputDirectory>Always</CopyToOutputDirectory>  | 
 | 39 | +    </None>  | 
 | 40 | +    <None Update="UtilityFiles\postmanCollection_ver2.json">  | 
 | 41 | +      <CopyToOutputDirectory>Always</CopyToOutputDirectory>  | 
 | 42 | +    </None>  | 
 | 43 | +    <None Update="UtilityFiles\postmanCollection_ver3.json">  | 
 | 44 | +      <CopyToOutputDirectory>Always</CopyToOutputDirectory>  | 
 | 45 | +    </None>  | 
 | 46 | +    <None Update="UtilityFiles\postmanCollection_ver4.json">  | 
 | 47 | +      <CopyToOutputDirectory>Always</CopyToOutputDirectory>  | 
 | 48 | +    </None>  | 
 | 49 | +    <None Update="UtilityFiles\Todo.xml">  | 
 | 50 | +      <CopyToOutputDirectory>Always</CopyToOutputDirectory>  | 
 | 51 | +    </None>  | 
 | 52 | +  </ItemGroup>  | 
 | 53 | + | 
 | 54 | +</Project>  | 
0 commit comments