Skip to content

Update namespace for DomainOperations.Products #233

Update namespace for DomainOperations.Products

Update namespace for DomainOperations.Products #233

Workflow file for this run

name: CI Build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
env:
BuildConfiguration: Release
jobs:
build:
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1.3
with:
msbuild-architecture: x64
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3.0.3
with:
dotnet-version: 7.x
- name: Setup NuGet.exe for use with actions
uses: NuGet/setup-nuget@v1.1.1
- name: Cache NuGet packages
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Restore Nuget packages
run: nuget restore Inventory.sln
- name: Build
run: msbuild Inventory.sln
-targets:rebuild
-verbosity:normal
-property:Configuration=${{env.BuildConfiguration}}
- name: Run tests
run: dotnet test