Skip to content

arambazamba/az-400-dependencies

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AZ-400 - Using Artifacts

  • Checkout commit with tag initial-project and explaing the relation between the two projects in food-api.csproj

  • Explain and run az-pipelines/publish-foodcalc.yml and mention GitVersion settings

  • Explain Azure Artifacts Credential Provider and Device Auth Flow

  • Checkout commit with tag project-using-feed and explain nuget.config and updated package ref

    dotnet restore --interactive

    restore-interactive

    *.csproj:

    <Project Sdk="Microsoft.NET.Sdk.Web">
        <PropertyGroup>
            <TargetFramework>net6.0</TargetFramework>
        </PropertyGroup>
        <ItemGroup>
            ...
            <PackageReference Include="FoodCalculations" Version="0.1.0" /> 
        </ItemGroup>
    </Project>
  • Explain and run consume-foodcalc.yaml