diff --git a/.github/workflows/010-blank-workflow.yml b/.github/workflows/010-blank-workflow.yml deleted file mode 100644 index a466083..0000000 --- a/.github/workflows/010-blank-workflow.yml +++ /dev/null @@ -1,36 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: 010-blank-workflow - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the main branch - push: - branches: none # [ main ] - pull_request: - branches: none # [ main ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. diff --git a/.github/workflows/020-manual-input-workflow.yml b/.github/workflows/020-manual-input-workflow.yml deleted file mode 100644 index 9fc79bc..0000000 --- a/.github/workflows/020-manual-input-workflow.yml +++ /dev/null @@ -1,30 +0,0 @@ -# This is a basic workflow that is manually triggered - -name: 020-manual-input-workflow - -# Controls when the action will run. Workflow runs when manually triggered using the UI -# or API. -on: - workflow_dispatch: - # Inputs the workflow accepts. - inputs: - name: - # Friendly description to be shown in the UI instead of 'name' - description: 'Person to greet' - # Default value if no value is explicitly provided - default: 'World' - # Input has to be provided for the workflow to run - required: true - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "greet" - greet: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Runs a single command using the runners shell - - name: Send greeting - run: echo "Hello ${{ github.event.inputs.name }}" diff --git a/.github/workflows/030-dotnet-workflow.yml b/.github/workflows/030-dotnet-workflow.yml deleted file mode 100644 index 19e61a9..0000000 --- a/.github/workflows/030-dotnet-workflow.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: 030-dotnet-workflow - -on: - push: - branches: none # [ main ] - pull_request: - branches: none # [ main ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - build-dotnet-app: - - runs-on: ubuntu-latest - - defaults: - run: - working-directory: 03-app-dotnet - - steps: - - uses: actions/checkout@v3 - - - name: Setup .NET - uses: actions/setup-dotnet@v2 - with: - dotnet-version: 6.0.x - - - name: Restore dependencies - run: dotnet restore - - - name: Build - run: dotnet build --no-restore - - - name: Test - run: dotnet test --no-build --verbosity normal diff --git a/.github/workflows/031-build-deploy-webapp-to-azure.yml b/.github/workflows/031-build-deploy-webapp-to-azure.yml deleted file mode 100644 index 79fa4aa..0000000 --- a/.github/workflows/031-build-deploy-webapp-to-azure.yml +++ /dev/null @@ -1,87 +0,0 @@ -# This workflow will build and push a .NET Core app to an Azure Web App when a commit is pushed to your default branch. -# -# This workflow assumes you have already created the target Azure App Service web app. -# For instructions see https://docs.microsoft.com/en-us/azure/app-service/quickstart-dotnetcore?tabs=net60&pivots=development-environment-vscode -# -# To configure this workflow: -# -# 1. Download the Publish Profile for your Azure Web App. You can download this file from the Overview page of your Web App in the Azure Portal. -# For more information: https://docs.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=applevel#generate-deployment-credentials -# -# 2. Create a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE, paste the publish profile contents as the value of the secret. -# For instructions on obtaining the publish profile see: https://docs.microsoft.com/azure/app-service/deploy-github-actions#configure-the-github-secret -# -# 3. Change the value for the AZURE_WEBAPP_NAME. Optionally, change the AZURE_WEBAPP_PACKAGE_PATH and DOTNET_VERSION environment variables below. -# -# For more information on GitHub Actions for Azure: https://github.com/Azure/Actions -# For more information on the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy -# For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples - -name: 031-build-deploy-webapp-to-azure - -env: - AZURE_WEBAPP_NAME: github-actions-workflow # set this to the name of your Azure Web App - DOTNET_VERSION: '6.0.x' # set this to the .NET Core version to use - -on: - push: - branches: none - # - main - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - defaults: - run: - working-directory: 03-app-dotnet - - steps: - - uses: actions/checkout@v3 - - - name: Set up .NET Core - uses: actions/setup-dotnet@v2 - with: - dotnet-version: ${{ env.DOTNET_VERSION }} - - - name: Set up dependency caching for faster builds - uses: actions/cache@v3 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} - restore-keys: | - ${{ runner.os }}-nuget- - - - name: Build with dotnet - run: dotnet build --configuration Release - - - name: dotnet publish - run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp - - - name: Upload artifact for deployment job - uses: actions/upload-artifact@v3 - with: - name: .net-app - path: ${{env.DOTNET_ROOT}}/myapp - - deploy: - runs-on: ubuntu-latest - needs: build - environment: - name: 'Development' - url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} - - steps: - - name: Download artifact from build job - uses: actions/download-artifact@v3 - with: - name: .net-app - - - name: Deploy to Azure Web App - id: deploy-to-webapp - uses: azure/webapps-deploy@v2 - with: - app-name: ${{ env.AZURE_WEBAPP_NAME }} - publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} - package: . diff --git a/.github/workflows/040-github-linter.yml b/.github/workflows/040-github-linter.yml deleted file mode 100644 index cd1c5f2..0000000 --- a/.github/workflows/040-github-linter.yml +++ /dev/null @@ -1,33 +0,0 @@ -# This workflow executes several linters on changed files based on languages used in your code base whenever -# you push a code or open a pull request. -# -# You can adjust the behavior by modifying this file. -# For more information, see: -# https://github.com/github/super-linter -name: 040-github-linter - -on: - push: - branches: none # [ main ] - pull_request: - branches: none # [ main ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - run-lint: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - # Full git history is needed to get a proper list of changed files within `super-linter` - fetch-depth: 0 - - - name: Lint Code Base - uses: github/super-linter@v4 - env: - VALIDATE_ALL_CODEBASE: false - DEFAULT_BRANCH: main - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/050-docker-build-workflow.yml b/.github/workflows/050-docker-build-workflow.yml deleted file mode 100644 index 384fd46..0000000 --- a/.github/workflows/050-docker-build-workflow.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: 050-docker-build-workflow - -on: - push: - branches: none # [ main ] - pull_request: - branches: none # [ main ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - - build-container: - - runs-on: ubuntu-latest - - steps: - - - uses: actions/checkout@v3 - - - name: Build the Docker image - working-directory: 03-app-dotnet - run: docker build . --file Dockerfile --tag my-app-dotnet:$(date +%s) diff --git a/.github/workflows/052-docker-ghcr-workflow.yml b/.github/workflows/052-docker-ghcr-workflow.yml deleted file mode 100644 index a6b47bb..0000000 --- a/.github/workflows/052-docker-ghcr-workflow.yml +++ /dev/null @@ -1,99 +0,0 @@ -name: 052-docker-ghcr-workflow - -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -on: - # schedule: - # - cron: '30 22 * * *' - push: - branches: none # [ main ] - # Publish semver tags as releases. - tags: none # [ 'v*.*.*' ] - pull_request: - branches: none # [ main ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -env: - # Use docker.io for Docker Hub if empty - REGISTRY: ghcr.io - # github.repository as / - IMAGE_NAME: houssemdellai/github-actions-course - # IMAGE_NAME: ${{ github.repository }} # returns HoussemDellai/github-actions-course : problem with uppercase - IMAGE_TAG: 1.0.${{ github.run_number }} # GITHUB_RUN_NUMBER }} - - -jobs: - build-push-docker: - - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - # This is used to complete the identity challenge - # with sigstore/fulcio when running outside of PRs. - id-token: write - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - # Install the cosign tool except on PR - # https://github.com/sigstore/cosign-installer - - name: Install cosign - if: github.event_name != 'pull_request' - uses: sigstore/cosign-installer@1e95c1de343b5b0c23352d6417ee3e48d5bcd422 - with: - cosign-release: 'v1.4.0' - - - # Workaround: https://github.com/docker/build-push-action/issues/461 - - name: Setup Docker buildx - uses: docker/setup-buildx-action@v1 - - # Login against a Docker registry except on PR - # https://github.com/docker/login-action - - name: Log into registry ${{ env.REGISTRY }} - if: github.event_name != 'pull_request' - uses: docker/login-action@v1 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - # Extract metadata (tags, labels) for Docker - # https://github.com/docker/metadata-action - - name: Extract Docker metadata - id: meta - uses: docker/metadata-action@v1 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - # Build and push Docker image with Buildx (don't push on PR) - # https://github.com/docker/build-push-action - - name: Build and push Docker image - id: build-and-push - uses: docker/build-push-action@v2 - with: - context: 03-app-dotnet - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} # ${{ steps.meta.outputs.tags }} - # tags: ghcr.io/houssemdellai/github-actions-course:${{ env.IMAGE_TAG }} # ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - - # Sign the resulting Docker image digest except on PRs. - # This will only write to the public Rekor transparency log when the Docker - # repository is public to avoid leaking data. If you would like to publish - # transparency data even for private images, pass --force to cosign below. - # https://github.com/sigstore/cosign - - name: Sign the published Docker image - if: ${{ github.event_name != 'pull_request' }} - env: - COSIGN_EXPERIMENTAL: "true" - # This step uses the identity token to provision an ephemeral certificate - # against the sigstore community Fulcio instance. - run: cosign sign ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }} diff --git a/.github/workflows/070-self-hosted-runner.yml b/.github/workflows/070-self-hosted-runner.yml deleted file mode 100644 index 25f64ef..0000000 --- a/.github/workflows/070-self-hosted-runner.yml +++ /dev/null @@ -1,36 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: 070-self-hosted-runner - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the main branch - push: - branches: none # [ main ] - pull_request: - branches: none # [ main ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: win11-laptop # ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. diff --git a/.github/workflows/080-resusable-workflow-caller.yml b/.github/workflows/080-resusable-workflow-caller.yml deleted file mode 100644 index e24eadc..0000000 --- a/.github/workflows/080-resusable-workflow-caller.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: 080-resusable-workflow-caller - -on: - push: - branches: none # [ main ] - pull_request: - branches: none # [ main ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - call-workflow-A: - uses: HoussemDellai/github-actions-course/.github/workflows/080-reusable-workflow-called.yml@main - with: - username: Houssem - secrets: - token: ${{ secrets.TOKEN }} - - call-workflow-B: - uses: HoussemDellai/github-actions-course/.github/workflows/080-reusable-workflow-called.yml@main - with: - username: Dellai - secrets: - token: ${{ secrets.TOKEN }} \ No newline at end of file diff --git a/.github/workflows/080-reusable-workflow-called.yml b/.github/workflows/080-reusable-workflow-called.yml deleted file mode 100644 index 24a5a7c..0000000 --- a/.github/workflows/080-reusable-workflow-called.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: 080-resusable-workflow-called - -on: - workflow_call: - inputs: - username: - required: true - type: string - secrets: - token: - required: true - -jobs: - example_job: - runs-on: ubuntu-latest - steps: - - name: Run a hello world script - run: echo Hello, ${{ inputs.username }} \ No newline at end of file diff --git a/.github/workflows/090-oidc-azure.yml b/.github/workflows/090-oidc-azure.yml deleted file mode 100644 index 56dc60e..0000000 --- a/.github/workflows/090-oidc-azure.yml +++ /dev/null @@ -1,31 +0,0 @@ -# https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure -name: 090-oidc-azure -on: - push: - branches: none # [ main ] - paths: - - '.github/workflows/090-oidc-azure.yml' - pull_request: - branches: none # [ main ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -permissions: - id-token: write - contents: read -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - name: 'Az CLI login' - uses: azure/login@v1 - with: - client-id: ${{ secrets.AZURE_CLIENT_ID }} - tenant-id: ${{ secrets.AZURE_TENANT_ID }} - subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - - - name: 'Run az commands' - run: | - az account show - az group list \ No newline at end of file diff --git a/.github/workflows/azure-webapps-dotnet-core.yml b/.github/workflows/azure-webapps-dotnet-core.yml new file mode 100644 index 0000000..440fbf6 --- /dev/null +++ b/.github/workflows/azure-webapps-dotnet-core.yml @@ -0,0 +1,69 @@ + +name: Build and deploy ASP.Net Core app to an Azure Web App + +env: + AZURE_WEBAPP_NAME: dotnet-7-trial # set this to the name of your Azure Web App + AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root + DOTNET_VERSION: '7.0' # set this to the .NET Core version to use + +on: + push: + branches: [ "main" ] + workflow_dispatch: + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up .NET Core + uses: actions/setup-dotnet@v2 + with: + dotnet-version: ${{ env.DOTNET_VERSION }} + + - name: Build with dotnet + run: dotnet build ./03-app-dotnet/app-dotnet.csproj --configuration Release + + - name: dotnet publish + run: dotnet publish ./03-app-dotnet/app-dotnet.csproj -c Release -o ${{env.DOTNET_ROOT}}/myapp + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v3 + with: + name: .net-app + path: ${{env.DOTNET_ROOT}}/myapp + + deploy: + permissions: + contents: none + runs-on: ubuntu-latest + needs: build + environment: + name: 'Development' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v3 + with: + name: .net-app + + - name: Login via Az module + uses: azure/login@v1 + with: + creds: ${{secrets.AZURE_CREDENTIALS}} + - run: | + az webapp list --query "[?state=='Running']" + + - name: Deploy to Azure Web App + id: deploy-to-webapp + uses: azure/webapps-deploy@v2 + with: + app-name: ${{ env.AZURE_WEBAPP_NAME }} + publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} + package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} diff --git a/03-app-dotnet/.vs/ProjectEvaluation/app-dotnet.metadata.v5.2 b/03-app-dotnet/.vs/ProjectEvaluation/app-dotnet.metadata.v5.2 new file mode 100644 index 0000000..d5ba1e2 Binary files /dev/null and b/03-app-dotnet/.vs/ProjectEvaluation/app-dotnet.metadata.v5.2 differ diff --git a/03-app-dotnet/.vs/ProjectEvaluation/app-dotnet.projects.v5.2 b/03-app-dotnet/.vs/ProjectEvaluation/app-dotnet.projects.v5.2 new file mode 100644 index 0000000..91fad0d Binary files /dev/null and b/03-app-dotnet/.vs/ProjectEvaluation/app-dotnet.projects.v5.2 differ diff --git a/03-app-dotnet/.vs/app-dotnet/DesignTimeBuild/.dtbcache.v2 b/03-app-dotnet/.vs/app-dotnet/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..a348d99 Binary files /dev/null and b/03-app-dotnet/.vs/app-dotnet/DesignTimeBuild/.dtbcache.v2 differ diff --git a/03-app-dotnet/.vs/app-dotnet/FileContentIndex/81b45e10-0795-4502-99f0-f4ea3d47f5bf.vsidx b/03-app-dotnet/.vs/app-dotnet/FileContentIndex/81b45e10-0795-4502-99f0-f4ea3d47f5bf.vsidx new file mode 100644 index 0000000..9485368 Binary files /dev/null and b/03-app-dotnet/.vs/app-dotnet/FileContentIndex/81b45e10-0795-4502-99f0-f4ea3d47f5bf.vsidx differ diff --git a/03-app-dotnet/.vs/app-dotnet/FileContentIndex/892ddc38-c4b2-488e-a0a9-ea215e7ca384.vsidx b/03-app-dotnet/.vs/app-dotnet/FileContentIndex/892ddc38-c4b2-488e-a0a9-ea215e7ca384.vsidx new file mode 100644 index 0000000..7658bc4 Binary files /dev/null and b/03-app-dotnet/.vs/app-dotnet/FileContentIndex/892ddc38-c4b2-488e-a0a9-ea215e7ca384.vsidx differ diff --git a/03-app-dotnet/.vs/app-dotnet/FileContentIndex/read.lock b/03-app-dotnet/.vs/app-dotnet/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/03-app-dotnet/.vs/app-dotnet/config/applicationhost.config b/03-app-dotnet/.vs/app-dotnet/config/applicationhost.config new file mode 100644 index 0000000..bfb3080 --- /dev/null +++ b/03-app-dotnet/.vs/app-dotnet/config/applicationhost.config @@ -0,0 +1,974 @@ + + + + + + +
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/03-app-dotnet/.vs/app-dotnet/v17/.futdcache.v2 b/03-app-dotnet/.vs/app-dotnet/v17/.futdcache.v2 new file mode 100644 index 0000000..e0f691a Binary files /dev/null and b/03-app-dotnet/.vs/app-dotnet/v17/.futdcache.v2 differ diff --git a/03-app-dotnet/.vs/app-dotnet/v17/.suo b/03-app-dotnet/.vs/app-dotnet/v17/.suo new file mode 100644 index 0000000..161c899 Binary files /dev/null and b/03-app-dotnet/.vs/app-dotnet/v17/.suo differ diff --git a/03-app-dotnet/app-dotnet.csproj b/03-app-dotnet/app-dotnet.csproj index 56f332d..da7efc9 100644 --- a/03-app-dotnet/app-dotnet.csproj +++ b/03-app-dotnet/app-dotnet.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 enable enable app_dotnet diff --git a/03-app-dotnet/app-dotnet.sln b/03-app-dotnet/app-dotnet.sln new file mode 100644 index 0000000..16e3426 --- /dev/null +++ b/03-app-dotnet/app-dotnet.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33122.133 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "app-dotnet", "app-dotnet.csproj", "{4600FD8D-E788-4979-B1B9-C9296A8333AD}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4600FD8D-E788-4979-B1B9-C9296A8333AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4600FD8D-E788-4979-B1B9-C9296A8333AD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4600FD8D-E788-4979-B1B9-C9296A8333AD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4600FD8D-E788-4979-B1B9-C9296A8333AD}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DB66438C-4B42-4551-BCBC-5E75CD7F6B34} + EndGlobalSection +EndGlobal diff --git a/03-app-dotnet/bin/Release/net6.0/app-dotnet.deps.json b/03-app-dotnet/bin/Release/net6.0/app-dotnet.deps.json new file mode 100644 index 0000000..d649f3b --- /dev/null +++ b/03-app-dotnet/bin/Release/net6.0/app-dotnet.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "app-dotnet/1.0.0": { + "runtime": { + "app-dotnet.dll": {} + } + } + } + }, + "libraries": { + "app-dotnet/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/03-app-dotnet/bin/Release/net6.0/app-dotnet.dll b/03-app-dotnet/bin/Release/net6.0/app-dotnet.dll new file mode 100644 index 0000000..444e1e8 Binary files /dev/null and b/03-app-dotnet/bin/Release/net6.0/app-dotnet.dll differ diff --git a/03-app-dotnet/bin/Release/net6.0/app-dotnet.exe b/03-app-dotnet/bin/Release/net6.0/app-dotnet.exe new file mode 100644 index 0000000..497bcc3 Binary files /dev/null and b/03-app-dotnet/bin/Release/net6.0/app-dotnet.exe differ diff --git a/03-app-dotnet/bin/Release/net6.0/app-dotnet.pdb b/03-app-dotnet/bin/Release/net6.0/app-dotnet.pdb new file mode 100644 index 0000000..d2c68e1 Binary files /dev/null and b/03-app-dotnet/bin/Release/net6.0/app-dotnet.pdb differ diff --git a/03-app-dotnet/bin/Release/net6.0/app-dotnet.runtimeconfig.json b/03-app-dotnet/bin/Release/net6.0/app-dotnet.runtimeconfig.json new file mode 100644 index 0000000..80d0347 --- /dev/null +++ b/03-app-dotnet/bin/Release/net6.0/app-dotnet.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/03-app-dotnet/bin/Release/net6.0/app-dotnet.staticwebassets.runtime.json b/03-app-dotnet/bin/Release/net6.0/app-dotnet.staticwebassets.runtime.json new file mode 100644 index 0000000..20f426c --- /dev/null +++ b/03-app-dotnet/bin/Release/net6.0/app-dotnet.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\","C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"app-dotnet.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"app-dotnet.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/03-app-dotnet/bin/Release/net6.0/appsettings.Development.json b/03-app-dotnet/bin/Release/net6.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/03-app-dotnet/bin/Release/net6.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/03-app-dotnet/bin/Release/net6.0/appsettings.json b/03-app-dotnet/bin/Release/net6.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/03-app-dotnet/bin/Release/net6.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/03-app-dotnet/bin/Release/net7.0/app-dotnet.deps.json b/03-app-dotnet/bin/Release/net7.0/app-dotnet.deps.json new file mode 100644 index 0000000..5227f5e --- /dev/null +++ b/03-app-dotnet/bin/Release/net7.0/app-dotnet.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "app-dotnet/1.0.0": { + "runtime": { + "app-dotnet.dll": {} + } + } + } + }, + "libraries": { + "app-dotnet/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/03-app-dotnet/bin/Release/net7.0/app-dotnet.dll b/03-app-dotnet/bin/Release/net7.0/app-dotnet.dll new file mode 100644 index 0000000..137b5cc Binary files /dev/null and b/03-app-dotnet/bin/Release/net7.0/app-dotnet.dll differ diff --git a/03-app-dotnet/bin/Release/net7.0/app-dotnet.exe b/03-app-dotnet/bin/Release/net7.0/app-dotnet.exe new file mode 100644 index 0000000..8a24b0f Binary files /dev/null and b/03-app-dotnet/bin/Release/net7.0/app-dotnet.exe differ diff --git a/03-app-dotnet/bin/Release/net7.0/app-dotnet.pdb b/03-app-dotnet/bin/Release/net7.0/app-dotnet.pdb new file mode 100644 index 0000000..9f5351f Binary files /dev/null and b/03-app-dotnet/bin/Release/net7.0/app-dotnet.pdb differ diff --git a/03-app-dotnet/bin/Release/net7.0/app-dotnet.runtimeconfig.json b/03-app-dotnet/bin/Release/net7.0/app-dotnet.runtimeconfig.json new file mode 100644 index 0000000..6e43fae --- /dev/null +++ b/03-app-dotnet/bin/Release/net7.0/app-dotnet.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "7.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/03-app-dotnet/bin/Release/net7.0/app-dotnet.staticwebassets.runtime.json b/03-app-dotnet/bin/Release/net7.0/app-dotnet.staticwebassets.runtime.json new file mode 100644 index 0000000..7afd310 --- /dev/null +++ b/03-app-dotnet/bin/Release/net7.0/app-dotnet.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\","C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"app-dotnet.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"app-dotnet.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/03-app-dotnet/bin/Release/net7.0/appsettings.Development.json b/03-app-dotnet/bin/Release/net7.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/03-app-dotnet/bin/Release/net7.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/03-app-dotnet/bin/Release/net7.0/appsettings.json b/03-app-dotnet/bin/Release/net7.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/03-app-dotnet/bin/Release/net7.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/03-app-dotnet/obj/Debug/net6.0/app-dotnet.AssemblyInfo.cs b/03-app-dotnet/obj/Debug/net6.0/app-dotnet.AssemblyInfo.cs index 8ae2218..4d30f49 100644 --- a/03-app-dotnet/obj/Debug/net6.0/app-dotnet.AssemblyInfo.cs +++ b/03-app-dotnet/obj/Debug/net6.0/app-dotnet.AssemblyInfo.cs @@ -1,6 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/03-app-dotnet/obj/Debug/net6.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig b/03-app-dotnet/obj/Debug/net6.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig index 8fc189c..4b2d853 100644 --- a/03-app-dotnet/obj/Debug/net6.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig +++ b/03-app-dotnet/obj/Debug/net6.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig @@ -5,40 +5,41 @@ build_property.UsingMicrosoftNETSdkWeb = true build_property.ProjectTypeGuids = build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = app_dotnet build_property.RootNamespace = app_dotnet -build_property.ProjectDir = D:\Projects\github-actions-course\03-app-dotnet\ +build_property.ProjectDir = C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\ build_property.RazorLangVersion = 6.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = D:\Projects\github-actions-course\03-app-dotnet +build_property.MSBuildProjectDirectory = C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet build_property._RazorSourceGeneratorDebug = -[D:/Projects/github-actions-course/03-app-dotnet/Views/Home/Index.cshtml] +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Home/Index.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxJbmRleC5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = -[D:/Projects/github-actions-course/03-app-dotnet/Views/Home/Privacy.cshtml] +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Home/Privacy.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = -[D:/Projects/github-actions-course/03-app-dotnet/Views/Shared/Error.cshtml] +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/Error.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEVycm9yLmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = -[D:/Projects/github-actions-course/03-app-dotnet/Views/Shared/_ValidationScriptsPartial.cshtml] +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/_ValidationScriptsPartial.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s build_metadata.AdditionalFiles.CssScope = -[D:/Projects/github-actions-course/03-app-dotnet/Views/_ViewImports.cshtml] +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/_ViewImports.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = -[D:/Projects/github-actions-course/03-app-dotnet/Views/_ViewStart.cshtml] +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/_ViewStart.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdTdGFydC5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = -[D:/Projects/github-actions-course/03-app-dotnet/Views/Shared/_Layout.cshtml] +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/_Layout.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9MYXlvdXQuY3NodG1s build_metadata.AdditionalFiles.CssScope = b-o19svgmy5w diff --git a/03-app-dotnet/obj/Debug/net6.0/app-dotnet.assets.cache b/03-app-dotnet/obj/Debug/net6.0/app-dotnet.assets.cache index cff45e9..c3a529c 100644 Binary files a/03-app-dotnet/obj/Debug/net6.0/app-dotnet.assets.cache and b/03-app-dotnet/obj/Debug/net6.0/app-dotnet.assets.cache differ diff --git a/03-app-dotnet/obj/Debug/net6.0/app-dotnet.csproj.AssemblyReference.cache b/03-app-dotnet/obj/Debug/net6.0/app-dotnet.csproj.AssemblyReference.cache index 11dcb5c..d4a557f 100644 Binary files a/03-app-dotnet/obj/Debug/net6.0/app-dotnet.csproj.AssemblyReference.cache and b/03-app-dotnet/obj/Debug/net6.0/app-dotnet.csproj.AssemblyReference.cache differ diff --git a/03-app-dotnet/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/03-app-dotnet/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/03-app-dotnet/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/03-app-dotnet/obj/Debug/net7.0/app-dotnet.AssemblyInfo.cs b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.AssemblyInfo.cs new file mode 100644 index 0000000..8ae2218 --- /dev/null +++ b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyTitleAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/03-app-dotnet/obj/Debug/net7.0/app-dotnet.AssemblyInfoInputs.cache b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.AssemblyInfoInputs.cache new file mode 100644 index 0000000..feda709 --- /dev/null +++ b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4b9bd9e8ac091ba00b3e2171276cbc706a1506ec diff --git a/03-app-dotnet/obj/Debug/net7.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ab8981e --- /dev/null +++ b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,45 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = app_dotnet +build_property.RootNamespace = app_dotnet +build_property.ProjectDir = C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\ +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet +build_property._RazorSourceGeneratorDebug = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Home/Index.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxJbmRleC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Home/Privacy.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/Error.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEVycm9yLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/_ValidationScriptsPartial.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/_ViewImports.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/_ViewStart.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdTdGFydC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/_Layout.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9MYXlvdXQuY3NodG1s +build_metadata.AdditionalFiles.CssScope = b-o19svgmy5w diff --git a/03-app-dotnet/obj/Debug/net7.0/app-dotnet.GlobalUsings.g.cs b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/03-app-dotnet/obj/Debug/net7.0/app-dotnet.RazorAssemblyInfo.cache b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.RazorAssemblyInfo.cache new file mode 100644 index 0000000..f24b41d --- /dev/null +++ b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +5860763757f4f08c7ebdea1b3a94a18109f17861 diff --git a/03-app-dotnet/obj/Debug/net7.0/app-dotnet.RazorAssemblyInfo.cs b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.RazorAssemblyInfo.cs new file mode 100644 index 0000000..31c8eab --- /dev/null +++ b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.RazorAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/03-app-dotnet/obj/Debug/net7.0/app-dotnet.assets.cache b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.assets.cache new file mode 100644 index 0000000..d427aa9 Binary files /dev/null and b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.assets.cache differ diff --git a/03-app-dotnet/obj/Debug/net7.0/app-dotnet.csproj.AssemblyReference.cache b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.csproj.AssemblyReference.cache new file mode 100644 index 0000000..99052a7 Binary files /dev/null and b/03-app-dotnet/obj/Debug/net7.0/app-dotnet.csproj.AssemblyReference.cache differ diff --git a/03-app-dotnet/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/03-app-dotnet/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/03-app-dotnet/obj/Release/net6.0/_IsIncrementalBuild b/03-app-dotnet/obj/Release/net6.0/_IsIncrementalBuild new file mode 100644 index 0000000..8330288 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Release\net6.0\\_IsIncrementalBuild diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.AssemblyInfo.cs b/03-app-dotnet/obj/Release/net6.0/app-dotnet.AssemblyInfo.cs new file mode 100644 index 0000000..08f6814 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyTitleAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.AssemblyInfoInputs.cache b/03-app-dotnet/obj/Release/net6.0/app-dotnet.AssemblyInfoInputs.cache new file mode 100644 index 0000000..13a2170 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +68f3652463320c8b40b95bbec92172656f63e27a diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig b/03-app-dotnet/obj/Release/net6.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4b2d853 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,45 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = app_dotnet +build_property.RootNamespace = app_dotnet +build_property.ProjectDir = C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\ +build_property.RazorLangVersion = 6.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet +build_property._RazorSourceGeneratorDebug = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Home/Index.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxJbmRleC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Home/Privacy.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/Error.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEVycm9yLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/_ValidationScriptsPartial.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/_ViewImports.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/_ViewStart.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdTdGFydC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/_Layout.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9MYXlvdXQuY3NodG1s +build_metadata.AdditionalFiles.CssScope = b-o19svgmy5w diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.GlobalUsings.g.cs b/03-app-dotnet/obj/Release/net6.0/app-dotnet.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.MvcApplicationPartsAssemblyInfo.cache b/03-app-dotnet/obj/Release/net6.0/app-dotnet.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.RazorAssemblyInfo.cache b/03-app-dotnet/obj/Release/net6.0/app-dotnet.RazorAssemblyInfo.cache new file mode 100644 index 0000000..f24b41d --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +5860763757f4f08c7ebdea1b3a94a18109f17861 diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.RazorAssemblyInfo.cs b/03-app-dotnet/obj/Release/net6.0/app-dotnet.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.assets.cache b/03-app-dotnet/obj/Release/net6.0/app-dotnet.assets.cache new file mode 100644 index 0000000..7a10289 Binary files /dev/null and b/03-app-dotnet/obj/Release/net6.0/app-dotnet.assets.cache differ diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.AssemblyReference.cache b/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d0b87be Binary files /dev/null and b/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.AssemblyReference.cache differ diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.CoreCompileInputs.cache b/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a963cb8 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d0bc02cc55084f34fe4e80cd5c46473404901394 diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.FileListAbsolute.txt b/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d63b56c --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.csproj.FileListAbsolute.txt @@ -0,0 +1,31 @@ +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net6.0\appsettings.Development.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net6.0\appsettings.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net6.0\app-dotnet.staticwebassets.runtime.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net6.0\app-dotnet.exe +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net6.0\app-dotnet.deps.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net6.0\app-dotnet.runtimeconfig.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net6.0\app-dotnet.dll +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net6.0\app-dotnet.pdb +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.csproj.AssemblyReference.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.GeneratedMSBuildEditorConfig.editorconfig +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.AssemblyInfoInputs.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.AssemblyInfo.cs +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.csproj.CoreCompileInputs.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.MvcApplicationPartsAssemblyInfo.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.RazorAssemblyInfo.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.RazorAssemblyInfo.cs +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\staticwebassets\msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\staticwebassets\msbuild.build.app-dotnet.props +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\staticwebassets\msbuild.buildMultiTargeting.app-dotnet.props +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\staticwebassets\msbuild.buildTransitive.app-dotnet.props +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\staticwebassets.pack.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\staticwebassets.build.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\staticwebassets.development.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\scopedcss\Views\Shared\_Layout.cshtml.rz.scp.css +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\scopedcss\bundle\app-dotnet.styles.css +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\scopedcss\projectbundle\app-dotnet.bundle.scp.css +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.dll +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\refint\app-dotnet.dll +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.pdb +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\app-dotnet.genruntimeconfig.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net6.0\ref\app-dotnet.dll diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.dll b/03-app-dotnet/obj/Release/net6.0/app-dotnet.dll new file mode 100644 index 0000000..444e1e8 Binary files /dev/null and b/03-app-dotnet/obj/Release/net6.0/app-dotnet.dll differ diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.genruntimeconfig.cache b/03-app-dotnet/obj/Release/net6.0/app-dotnet.genruntimeconfig.cache new file mode 100644 index 0000000..a0a4216 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/app-dotnet.genruntimeconfig.cache @@ -0,0 +1 @@ +d8b692fad6b18465b498109c04f5e5a8bd742e2b diff --git a/03-app-dotnet/obj/Release/net6.0/app-dotnet.pdb b/03-app-dotnet/obj/Release/net6.0/app-dotnet.pdb new file mode 100644 index 0000000..d2c68e1 Binary files /dev/null and b/03-app-dotnet/obj/Release/net6.0/app-dotnet.pdb differ diff --git a/03-app-dotnet/obj/Release/net6.0/apphost.exe b/03-app-dotnet/obj/Release/net6.0/apphost.exe new file mode 100644 index 0000000..497bcc3 Binary files /dev/null and b/03-app-dotnet/obj/Release/net6.0/apphost.exe differ diff --git a/03-app-dotnet/obj/Release/net6.0/ref/app-dotnet.dll b/03-app-dotnet/obj/Release/net6.0/ref/app-dotnet.dll new file mode 100644 index 0000000..e22511c Binary files /dev/null and b/03-app-dotnet/obj/Release/net6.0/ref/app-dotnet.dll differ diff --git a/03-app-dotnet/obj/Release/net6.0/refint/app-dotnet.dll b/03-app-dotnet/obj/Release/net6.0/refint/app-dotnet.dll new file mode 100644 index 0000000..e22511c Binary files /dev/null and b/03-app-dotnet/obj/Release/net6.0/refint/app-dotnet.dll differ diff --git a/03-app-dotnet/obj/Release/net6.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css b/03-app-dotnet/obj/Release/net6.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css new file mode 100644 index 0000000..8ac5f95 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css @@ -0,0 +1,48 @@ +/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification +for details on configuring this project to bundle and minify static web assets. */ + +a.navbar-brand[b-o19svgmy5w] { + white-space: normal; + text-align: center; + word-break: break-all; +} + +a[b-o19svgmy5w] { + color: #0077cc; +} + +.btn-primary[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.nav-pills .nav-link.active[b-o19svgmy5w], .nav-pills .show > .nav-link[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.border-top[b-o19svgmy5w] { + border-top: 1px solid #e5e5e5; +} +.border-bottom[b-o19svgmy5w] { + border-bottom: 1px solid #e5e5e5; +} + +.box-shadow[b-o19svgmy5w] { + box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); +} + +button.accept-policy[b-o19svgmy5w] { + font-size: 1rem; + line-height: inherit; +} + +.footer[b-o19svgmy5w] { + position: absolute; + bottom: 0; + width: 100%; + white-space: nowrap; + line-height: 60px; +} diff --git a/03-app-dotnet/obj/Release/net6.0/scopedcss/bundle/app-dotnet.styles.css b/03-app-dotnet/obj/Release/net6.0/scopedcss/bundle/app-dotnet.styles.css new file mode 100644 index 0000000..fb40024 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/scopedcss/bundle/app-dotnet.styles.css @@ -0,0 +1,49 @@ +/* _content/app-dotnet/Views/Shared/_Layout.cshtml.rz.scp.css */ +/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification +for details on configuring this project to bundle and minify static web assets. */ + +a.navbar-brand[b-o19svgmy5w] { + white-space: normal; + text-align: center; + word-break: break-all; +} + +a[b-o19svgmy5w] { + color: #0077cc; +} + +.btn-primary[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.nav-pills .nav-link.active[b-o19svgmy5w], .nav-pills .show > .nav-link[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.border-top[b-o19svgmy5w] { + border-top: 1px solid #e5e5e5; +} +.border-bottom[b-o19svgmy5w] { + border-bottom: 1px solid #e5e5e5; +} + +.box-shadow[b-o19svgmy5w] { + box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); +} + +button.accept-policy[b-o19svgmy5w] { + font-size: 1rem; + line-height: inherit; +} + +.footer[b-o19svgmy5w] { + position: absolute; + bottom: 0; + width: 100%; + white-space: nowrap; + line-height: 60px; +} diff --git a/03-app-dotnet/obj/Release/net6.0/scopedcss/projectbundle/app-dotnet.bundle.scp.css b/03-app-dotnet/obj/Release/net6.0/scopedcss/projectbundle/app-dotnet.bundle.scp.css new file mode 100644 index 0000000..fb40024 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/scopedcss/projectbundle/app-dotnet.bundle.scp.css @@ -0,0 +1,49 @@ +/* _content/app-dotnet/Views/Shared/_Layout.cshtml.rz.scp.css */ +/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification +for details on configuring this project to bundle and minify static web assets. */ + +a.navbar-brand[b-o19svgmy5w] { + white-space: normal; + text-align: center; + word-break: break-all; +} + +a[b-o19svgmy5w] { + color: #0077cc; +} + +.btn-primary[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.nav-pills .nav-link.active[b-o19svgmy5w], .nav-pills .show > .nav-link[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.border-top[b-o19svgmy5w] { + border-top: 1px solid #e5e5e5; +} +.border-bottom[b-o19svgmy5w] { + border-bottom: 1px solid #e5e5e5; +} + +.box-shadow[b-o19svgmy5w] { + box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); +} + +button.accept-policy[b-o19svgmy5w] { + font-size: 1rem; + line-height: inherit; +} + +.footer[b-o19svgmy5w] { + position: absolute; + bottom: 0; + width: 100%; + white-space: nowrap; + line-height: 60px; +} diff --git a/03-app-dotnet/obj/Release/net6.0/staticwebassets.build.json b/03-app-dotnet/obj/Release/net6.0/staticwebassets.build.json new file mode 100644 index 0000000..f9792bb --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/staticwebassets.build.json @@ -0,0 +1,1074 @@ +{ + "Version": 1, + "Hash": "iMecNvtUvltrmp+VHK1RYUbc1gqvJbVRrZUt6/2wqAE=", + "Source": "app-dotnet", + "BasePath": "_content/app-dotnet", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "app-dotnet\\wwwroot", + "Source": "app-dotnet", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\bundle\\app-dotnet.styles.css", + "SourceId": "app-dotnet", + "SourceType": "Computed", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\bundle\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "app-dotnet.styles.css", + "AssetKind": "All", + "AssetMode": "CurrentProject", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ApplicationBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\bundle\\app-dotnet.styles.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\projectbundle\\app-dotnet.bundle.scp.css", + "SourceId": "app-dotnet", + "SourceType": "Computed", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\projectbundle\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "app-dotnet.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\projectbundle\\app-dotnet.bundle.scp.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\css\\site.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "css/site.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\site.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\favicon.ico", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "favicon.ico", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\favicon.ico" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\js\\site.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "js/site.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\js\\site.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\LICENSE", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/LICENSE", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\LICENSE" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery/dist/jquery.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery/dist/jquery.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.min.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery/dist/jquery.min.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.min.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\LICENSE.txt", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery/LICENSE.txt", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery\\LICENSE.txt" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/dist/additional-methods.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\LICENSE.md", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/LICENSE.md", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\LICENSE.md" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt" + } + ] +} \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net6.0/staticwebassets.development.json b/03-app-dotnet/obj/Release/net6.0/staticwebassets.development.json new file mode 100644 index 0000000..20f426c --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\","C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"app-dotnet.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"app-dotnet.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net6.0/staticwebassets.pack.json b/03-app-dotnet/obj/Release/net6.0/staticwebassets.pack.json new file mode 100644 index 0000000..5a43bfe --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/staticwebassets.pack.json @@ -0,0 +1,265 @@ +{ + "Files": [ + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net6.0\\scopedcss\\projectbundle\\app-dotnet.bundle.scp.css", + "PackagePath": "staticwebassets\\app-dotnet.bundle.scp.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\css\\site.css", + "PackagePath": "staticwebassets\\css\\site.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\favicon.ico", + "PackagePath": "staticwebassets\\favicon.ico" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\js\\site.js", + "PackagePath": "staticwebassets\\js\\site.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\LICENSE", + "PackagePath": "staticwebassets\\lib\\bootstrap" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt", + "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\LICENSE.txt" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\LICENSE.md", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\LICENSE.md" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\additional-methods.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\additional-methods.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\jquery.validate.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\jquery.validate.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\LICENSE.txt", + "PackagePath": "staticwebassets\\lib\\jquery\\LICENSE.txt" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.js", + "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.min.js", + "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.min.map", + "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.min.map" + }, + { + "Id": "obj\\Release\\net6.0\\staticwebassets\\msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj\\Release\\net6.0\\staticwebassets\\msbuild.build.app-dotnet.props", + "PackagePath": "build\\app-dotnet.props" + }, + { + "Id": "obj\\Release\\net6.0\\staticwebassets\\msbuild.buildMultiTargeting.app-dotnet.props", + "PackagePath": "buildMultiTargeting\\app-dotnet.props" + }, + { + "Id": "obj\\Release\\net6.0\\staticwebassets\\msbuild.buildTransitive.app-dotnet.props", + "PackagePath": "buildTransitive\\app-dotnet.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props b/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..53af426 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,980 @@ + + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + app-dotnet.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\app-dotnet.bundle.scp.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + css/site.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\site.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + favicon.ico + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + js/site.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\site.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.rtl.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.rtl.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.rtl.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.rtl.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.rtl.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.rtl.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.rtl.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.bundle.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.bundle.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.bundle.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.bundle.min.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.esm.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.esm.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.esm.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.esm.min.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.min.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.min.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.min.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/LICENSE + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\LICENSE)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation-unobtrusive/LICENSE.txt + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\LICENSE.txt)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/dist/additional-methods.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\additional-methods.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/dist/additional-methods.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\additional-methods.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/dist/jquery.validate.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\jquery.validate.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/dist/jquery.validate.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\jquery.validate.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/LICENSE.md + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\LICENSE.md)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery/dist/jquery.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery/dist/jquery.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery/dist/jquery.min.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.min.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery/LICENSE.txt + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\LICENSE.txt)) + + + \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.build.app-dotnet.props b/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.build.app-dotnet.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.build.app-dotnet.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.buildMultiTargeting.app-dotnet.props b/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.buildMultiTargeting.app-dotnet.props new file mode 100644 index 0000000..edacf94 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.buildMultiTargeting.app-dotnet.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.buildTransitive.app-dotnet.props b/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.buildTransitive.app-dotnet.props new file mode 100644 index 0000000..0f3ffd7 --- /dev/null +++ b/03-app-dotnet/obj/Release/net6.0/staticwebassets/msbuild.buildTransitive.app-dotnet.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/03-app-dotnet/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/03-app-dotnet/obj/Release/net7.0/_IsIncrementalBuild b/03-app-dotnet/obj/Release/net7.0/_IsIncrementalBuild new file mode 100644 index 0000000..1184106 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Release\net7.0\\_IsIncrementalBuild diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.AssemblyInfo.cs b/03-app-dotnet/obj/Release/net7.0/app-dotnet.AssemblyInfo.cs new file mode 100644 index 0000000..08f6814 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyTitleAttribute("app-dotnet")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.AssemblyInfoInputs.cache b/03-app-dotnet/obj/Release/net7.0/app-dotnet.AssemblyInfoInputs.cache new file mode 100644 index 0000000..13a2170 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +68f3652463320c8b40b95bbec92172656f63e27a diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig b/03-app-dotnet/obj/Release/net7.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ab8981e --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,45 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = app_dotnet +build_property.RootNamespace = app_dotnet +build_property.ProjectDir = C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\ +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet +build_property._RazorSourceGeneratorDebug = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Home/Index.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxJbmRleC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Home/Privacy.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/Error.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEVycm9yLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/_ValidationScriptsPartial.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/_ViewImports.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/_ViewStart.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdTdGFydC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + +[C:/Nevin/HACKfest/2022-Migration-to-.NET-7/actins with core/github-actions-course/03-app-dotnet/Views/Shared/_Layout.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9MYXlvdXQuY3NodG1s +build_metadata.AdditionalFiles.CssScope = b-o19svgmy5w diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.GlobalUsings.g.cs b/03-app-dotnet/obj/Release/net7.0/app-dotnet.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.MvcApplicationPartsAssemblyInfo.cache b/03-app-dotnet/obj/Release/net7.0/app-dotnet.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.RazorAssemblyInfo.cache b/03-app-dotnet/obj/Release/net7.0/app-dotnet.RazorAssemblyInfo.cache new file mode 100644 index 0000000..f24b41d --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +5860763757f4f08c7ebdea1b3a94a18109f17861 diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.RazorAssemblyInfo.cs b/03-app-dotnet/obj/Release/net7.0/app-dotnet.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.assets.cache b/03-app-dotnet/obj/Release/net7.0/app-dotnet.assets.cache new file mode 100644 index 0000000..90b843b Binary files /dev/null and b/03-app-dotnet/obj/Release/net7.0/app-dotnet.assets.cache differ diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.AssemblyReference.cache b/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.AssemblyReference.cache new file mode 100644 index 0000000..dcdbf47 Binary files /dev/null and b/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.AssemblyReference.cache differ diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.CoreCompileInputs.cache b/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..428f365 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8b352862a1bf5ba220c76b5132f241aefc4f24c5 diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.FileListAbsolute.txt b/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1430eb1 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.csproj.FileListAbsolute.txt @@ -0,0 +1,31 @@ +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net7.0\appsettings.Development.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net7.0\appsettings.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net7.0\app-dotnet.staticwebassets.runtime.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net7.0\app-dotnet.exe +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net7.0\app-dotnet.deps.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net7.0\app-dotnet.runtimeconfig.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net7.0\app-dotnet.dll +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\bin\Release\net7.0\app-dotnet.pdb +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.csproj.AssemblyReference.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.GeneratedMSBuildEditorConfig.editorconfig +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.AssemblyInfoInputs.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.AssemblyInfo.cs +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.csproj.CoreCompileInputs.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.MvcApplicationPartsAssemblyInfo.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.RazorAssemblyInfo.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.RazorAssemblyInfo.cs +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\staticwebassets\msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\staticwebassets\msbuild.build.app-dotnet.props +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\staticwebassets\msbuild.buildMultiTargeting.app-dotnet.props +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\staticwebassets\msbuild.buildTransitive.app-dotnet.props +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\staticwebassets.pack.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\staticwebassets.build.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\staticwebassets.development.json +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\scopedcss\Views\Shared\_Layout.cshtml.rz.scp.css +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\scopedcss\bundle\app-dotnet.styles.css +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\scopedcss\projectbundle\app-dotnet.bundle.scp.css +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.dll +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\refint\app-dotnet.dll +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.pdb +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\app-dotnet.genruntimeconfig.cache +C:\Nevin\HACKfest\2022-Migration-to-.NET-7\actins with core\github-actions-course\03-app-dotnet\obj\Release\net7.0\ref\app-dotnet.dll diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.dll b/03-app-dotnet/obj/Release/net7.0/app-dotnet.dll new file mode 100644 index 0000000..137b5cc Binary files /dev/null and b/03-app-dotnet/obj/Release/net7.0/app-dotnet.dll differ diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.genruntimeconfig.cache b/03-app-dotnet/obj/Release/net7.0/app-dotnet.genruntimeconfig.cache new file mode 100644 index 0000000..1991a2b --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/app-dotnet.genruntimeconfig.cache @@ -0,0 +1 @@ +ee6c89c00ead410f82d7123a77e559c4807db749 diff --git a/03-app-dotnet/obj/Release/net7.0/app-dotnet.pdb b/03-app-dotnet/obj/Release/net7.0/app-dotnet.pdb new file mode 100644 index 0000000..9f5351f Binary files /dev/null and b/03-app-dotnet/obj/Release/net7.0/app-dotnet.pdb differ diff --git a/03-app-dotnet/obj/Release/net7.0/apphost.exe b/03-app-dotnet/obj/Release/net7.0/apphost.exe new file mode 100644 index 0000000..8a24b0f Binary files /dev/null and b/03-app-dotnet/obj/Release/net7.0/apphost.exe differ diff --git a/03-app-dotnet/obj/Release/net7.0/ref/app-dotnet.dll b/03-app-dotnet/obj/Release/net7.0/ref/app-dotnet.dll new file mode 100644 index 0000000..f658729 Binary files /dev/null and b/03-app-dotnet/obj/Release/net7.0/ref/app-dotnet.dll differ diff --git a/03-app-dotnet/obj/Release/net7.0/refint/app-dotnet.dll b/03-app-dotnet/obj/Release/net7.0/refint/app-dotnet.dll new file mode 100644 index 0000000..f658729 Binary files /dev/null and b/03-app-dotnet/obj/Release/net7.0/refint/app-dotnet.dll differ diff --git a/03-app-dotnet/obj/Release/net7.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css b/03-app-dotnet/obj/Release/net7.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css new file mode 100644 index 0000000..8ac5f95 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css @@ -0,0 +1,48 @@ +/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification +for details on configuring this project to bundle and minify static web assets. */ + +a.navbar-brand[b-o19svgmy5w] { + white-space: normal; + text-align: center; + word-break: break-all; +} + +a[b-o19svgmy5w] { + color: #0077cc; +} + +.btn-primary[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.nav-pills .nav-link.active[b-o19svgmy5w], .nav-pills .show > .nav-link[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.border-top[b-o19svgmy5w] { + border-top: 1px solid #e5e5e5; +} +.border-bottom[b-o19svgmy5w] { + border-bottom: 1px solid #e5e5e5; +} + +.box-shadow[b-o19svgmy5w] { + box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); +} + +button.accept-policy[b-o19svgmy5w] { + font-size: 1rem; + line-height: inherit; +} + +.footer[b-o19svgmy5w] { + position: absolute; + bottom: 0; + width: 100%; + white-space: nowrap; + line-height: 60px; +} diff --git a/03-app-dotnet/obj/Release/net7.0/scopedcss/bundle/app-dotnet.styles.css b/03-app-dotnet/obj/Release/net7.0/scopedcss/bundle/app-dotnet.styles.css new file mode 100644 index 0000000..fb40024 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/scopedcss/bundle/app-dotnet.styles.css @@ -0,0 +1,49 @@ +/* _content/app-dotnet/Views/Shared/_Layout.cshtml.rz.scp.css */ +/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification +for details on configuring this project to bundle and minify static web assets. */ + +a.navbar-brand[b-o19svgmy5w] { + white-space: normal; + text-align: center; + word-break: break-all; +} + +a[b-o19svgmy5w] { + color: #0077cc; +} + +.btn-primary[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.nav-pills .nav-link.active[b-o19svgmy5w], .nav-pills .show > .nav-link[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.border-top[b-o19svgmy5w] { + border-top: 1px solid #e5e5e5; +} +.border-bottom[b-o19svgmy5w] { + border-bottom: 1px solid #e5e5e5; +} + +.box-shadow[b-o19svgmy5w] { + box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); +} + +button.accept-policy[b-o19svgmy5w] { + font-size: 1rem; + line-height: inherit; +} + +.footer[b-o19svgmy5w] { + position: absolute; + bottom: 0; + width: 100%; + white-space: nowrap; + line-height: 60px; +} diff --git a/03-app-dotnet/obj/Release/net7.0/scopedcss/projectbundle/app-dotnet.bundle.scp.css b/03-app-dotnet/obj/Release/net7.0/scopedcss/projectbundle/app-dotnet.bundle.scp.css new file mode 100644 index 0000000..fb40024 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/scopedcss/projectbundle/app-dotnet.bundle.scp.css @@ -0,0 +1,49 @@ +/* _content/app-dotnet/Views/Shared/_Layout.cshtml.rz.scp.css */ +/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification +for details on configuring this project to bundle and minify static web assets. */ + +a.navbar-brand[b-o19svgmy5w] { + white-space: normal; + text-align: center; + word-break: break-all; +} + +a[b-o19svgmy5w] { + color: #0077cc; +} + +.btn-primary[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.nav-pills .nav-link.active[b-o19svgmy5w], .nav-pills .show > .nav-link[b-o19svgmy5w] { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.border-top[b-o19svgmy5w] { + border-top: 1px solid #e5e5e5; +} +.border-bottom[b-o19svgmy5w] { + border-bottom: 1px solid #e5e5e5; +} + +.box-shadow[b-o19svgmy5w] { + box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); +} + +button.accept-policy[b-o19svgmy5w] { + font-size: 1rem; + line-height: inherit; +} + +.footer[b-o19svgmy5w] { + position: absolute; + bottom: 0; + width: 100%; + white-space: nowrap; + line-height: 60px; +} diff --git a/03-app-dotnet/obj/Release/net7.0/staticwebassets.build.json b/03-app-dotnet/obj/Release/net7.0/staticwebassets.build.json new file mode 100644 index 0000000..d853e13 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/staticwebassets.build.json @@ -0,0 +1,1074 @@ +{ + "Version": 1, + "Hash": "Mvqwnp+41Bd3UfRsMKehX50H48CUDf9DcrhBUJvGlDg=", + "Source": "app-dotnet", + "BasePath": "_content/app-dotnet", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "app-dotnet\\wwwroot", + "Source": "app-dotnet", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\bundle\\app-dotnet.styles.css", + "SourceId": "app-dotnet", + "SourceType": "Computed", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\bundle\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "app-dotnet.styles.css", + "AssetKind": "All", + "AssetMode": "CurrentProject", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ApplicationBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\bundle\\app-dotnet.styles.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\projectbundle\\app-dotnet.bundle.scp.css", + "SourceId": "app-dotnet", + "SourceType": "Computed", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\projectbundle\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "app-dotnet.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\projectbundle\\app-dotnet.bundle.scp.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\css\\site.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "css/site.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\site.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\favicon.ico", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "favicon.ico", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\favicon.ico" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\js\\site.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "js/site.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\js\\site.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\LICENSE", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/bootstrap/LICENSE", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\LICENSE" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery/dist/jquery.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery/dist/jquery.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.min.map", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery/dist/jquery.min.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.min.map" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\LICENSE.txt", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery/LICENSE.txt", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery\\LICENSE.txt" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/dist/additional-methods.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\LICENSE.md", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation/LICENSE.md", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\LICENSE.md" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js" + }, + { + "Identity": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt", + "SourceId": "app-dotnet", + "SourceType": "Discovered", + "ContentRoot": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\", + "BasePath": "_content/app-dotnet", + "RelativePath": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt" + } + ] +} \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net7.0/staticwebassets.development.json b/03-app-dotnet/obj/Release/net7.0/staticwebassets.development.json new file mode 100644 index 0000000..7afd310 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\","C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"app-dotnet.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"app-dotnet.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net7.0/staticwebassets.pack.json b/03-app-dotnet/obj/Release/net7.0/staticwebassets.pack.json new file mode 100644 index 0000000..c11e031 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/staticwebassets.pack.json @@ -0,0 +1,265 @@ +{ + "Files": [ + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\Release\\net7.0\\scopedcss\\projectbundle\\app-dotnet.bundle.scp.css", + "PackagePath": "staticwebassets\\app-dotnet.bundle.scp.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\css\\site.css", + "PackagePath": "staticwebassets\\css\\site.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\favicon.ico", + "PackagePath": "staticwebassets\\favicon.ico" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\js\\site.js", + "PackagePath": "staticwebassets\\js\\site.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\LICENSE", + "PackagePath": "staticwebassets\\lib\\bootstrap" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map", + "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt", + "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\LICENSE.txt" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\LICENSE.md", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\LICENSE.md" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\additional-methods.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\additional-methods.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\jquery.validate.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\jquery.validate.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\LICENSE.txt", + "PackagePath": "staticwebassets\\lib\\jquery\\LICENSE.txt" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.js", + "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.min.js", + "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.min.js" + }, + { + "Id": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\wwwroot\\lib\\jquery\\dist\\jquery.min.map", + "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.min.map" + }, + { + "Id": "obj\\Release\\net7.0\\staticwebassets\\msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj\\Release\\net7.0\\staticwebassets\\msbuild.build.app-dotnet.props", + "PackagePath": "build\\app-dotnet.props" + }, + { + "Id": "obj\\Release\\net7.0\\staticwebassets\\msbuild.buildMultiTargeting.app-dotnet.props", + "PackagePath": "buildMultiTargeting\\app-dotnet.props" + }, + { + "Id": "obj\\Release\\net7.0\\staticwebassets\\msbuild.buildTransitive.app-dotnet.props", + "PackagePath": "buildTransitive\\app-dotnet.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props b/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..53af426 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.app-dotnet.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,980 @@ + + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + app-dotnet.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\app-dotnet.bundle.scp.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + css/site.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\site.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + favicon.ico + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + js/site.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\site.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.rtl.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.rtl.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.rtl.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.rtl.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.rtl.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.rtl.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.min.css)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/css/bootstrap.rtl.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.bundle.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.bundle.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.bundle.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.bundle.min.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.esm.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.esm.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.esm.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.esm.min.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.min.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/dist/js/bootstrap.min.js.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.min.js.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/bootstrap/LICENSE + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\LICENSE)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation-unobtrusive/LICENSE.txt + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\LICENSE.txt)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/dist/additional-methods.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\additional-methods.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/dist/additional-methods.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\additional-methods.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/dist/jquery.validate.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\jquery.validate.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/dist/jquery.validate.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\jquery.validate.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery-validation/LICENSE.md + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\LICENSE.md)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery/dist/jquery.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery/dist/jquery.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.min.js)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery/dist/jquery.min.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.min.map)) + + + Package + app-dotnet + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/app-dotnet + lib/jquery/LICENSE.txt + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\LICENSE.txt)) + + + \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.build.app-dotnet.props b/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.build.app-dotnet.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.build.app-dotnet.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.app-dotnet.props b/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.app-dotnet.props new file mode 100644 index 0000000..edacf94 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.app-dotnet.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.app-dotnet.props b/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.app-dotnet.props new file mode 100644 index 0000000..0f3ffd7 --- /dev/null +++ b/03-app-dotnet/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.app-dotnet.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/03-app-dotnet/obj/app-dotnet.csproj.nuget.dgspec.json b/03-app-dotnet/obj/app-dotnet.csproj.nuget.dgspec.json index e8eb874..2a6bc3d 100644 --- a/03-app-dotnet/obj/app-dotnet.csproj.nuget.dgspec.json +++ b/03-app-dotnet/obj/app-dotnet.csproj.nuget.dgspec.json @@ -1,32 +1,37 @@ { "format": 1, "restore": { - "D:\\Projects\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj": {} + "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj": {} }, "projects": { - "D:\\Projects\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj": { + "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Projects\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", + "projectUniqueName": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", "projectName": "app-dotnet", - "projectPath": "D:\\Projects\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", - "packagesPath": "C:\\Users\\hodellai\\.nuget\\packages\\", - "outputPath": "D:\\Projects\\github-actions-course\\03-app-dotnet\\obj\\", + "projectPath": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", + "packagesPath": "C:\\Users\\NSunny\\.nuget\\packages\\", + "outputPath": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\hodellai\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\NSunny\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ - "net6.0" + "net7.0" ], "sources": { - "https://pkgs.dev.azure.com/houssemdellai/MyLibrary-Nuget/_packaging/MyLibrary-Nuget-02/nuget/v3/index.json": {}, - "https://pkgs.dev.azure.com/houssemdellai/cardif-nuget/_packaging/cardif/nuget/v3/index.json": {}, - "https://pkgs.dev.azure.com/houssemdellai/cardif-nuget/_packaging/cardif01/nuget/v3/index.json": {} + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net6.0": { - "targetAlias": "net6.0", + "net7.0": { + "targetAlias": "net7.0", "projectReferences": {} } }, @@ -37,15 +42,16 @@ } }, "frameworks": { - "net6.0": { - "targetAlias": "net6.0", + "net7.0": { + "targetAlias": "net7.0", "imports": [ "net461", "net462", "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -57,7 +63,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" } } } diff --git a/03-app-dotnet/obj/app-dotnet.csproj.nuget.g.props b/03-app-dotnet/obj/app-dotnet.csproj.nuget.g.props index cc95559..87f1eb5 100644 --- a/03-app-dotnet/obj/app-dotnet.csproj.nuget.g.props +++ b/03-app-dotnet/obj/app-dotnet.csproj.nuget.g.props @@ -5,11 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\hodellai\.nuget\packages\ + C:\Users\NSunny\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.1.0 + 6.4.0 - + + \ No newline at end of file diff --git a/03-app-dotnet/obj/project.assets.json b/03-app-dotnet/obj/project.assets.json index 82dca83..8d7e688 100644 --- a/03-app-dotnet/obj/project.assets.json +++ b/03-app-dotnet/obj/project.assets.json @@ -1,38 +1,44 @@ { "version": 3, "targets": { - "net6.0": {} + "net7.0": {} }, "libraries": {}, "projectFileDependencyGroups": { - "net6.0": [] + "net7.0": [] }, "packageFolders": { - "C:\\Users\\hodellai\\.nuget\\packages\\": {} + "C:\\Users\\NSunny\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Projects\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", + "projectUniqueName": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", "projectName": "app-dotnet", - "projectPath": "D:\\Projects\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", - "packagesPath": "C:\\Users\\hodellai\\.nuget\\packages\\", - "outputPath": "D:\\Projects\\github-actions-course\\03-app-dotnet\\obj\\", + "projectPath": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", + "packagesPath": "C:\\Users\\NSunny\\.nuget\\packages\\", + "outputPath": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\hodellai\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\NSunny\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ - "net6.0" + "net7.0" ], "sources": { - "https://pkgs.dev.azure.com/houssemdellai/MyLibrary-Nuget/_packaging/MyLibrary-Nuget-02/nuget/v3/index.json": {}, - "https://pkgs.dev.azure.com/houssemdellai/cardif-nuget/_packaging/cardif/nuget/v3/index.json": {}, - "https://pkgs.dev.azure.com/houssemdellai/cardif-nuget/_packaging/cardif01/nuget/v3/index.json": {} + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net6.0": { - "targetAlias": "net6.0", + "net7.0": { + "targetAlias": "net7.0", "projectReferences": {} } }, @@ -43,15 +49,16 @@ } }, "frameworks": { - "net6.0": { - "targetAlias": "net6.0", + "net7.0": { + "targetAlias": "net7.0", "imports": [ "net461", "net462", "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -63,7 +70,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" } } } diff --git a/03-app-dotnet/obj/project.nuget.cache b/03-app-dotnet/obj/project.nuget.cache index ff83adf..97e3115 100644 --- a/03-app-dotnet/obj/project.nuget.cache +++ b/03-app-dotnet/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "yvym+Byn0VuTbR/7gNMxcYbdhjxldVFlneb92phLhUOBuKb/QmTG7L592LvGWIQKl8R1T49jayXCl857dQ7vwA==", + "dgSpecHash": "AlNLJGyFrihnuygSX3bJXobBUK2/KnTH8fWYijV7fV6eKf6af8wuPoJMjXEl+KSqMWZlM2tVTI4OetpCayzrIA==", "success": true, - "projectFilePath": "D:\\Projects\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", + "projectFilePath": "C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj", "expectedPackageFiles": [], "logs": [] } \ No newline at end of file diff --git a/03-app-dotnet/upgrade-assistant.clef b/03-app-dotnet/upgrade-assistant.clef new file mode 100644 index 0000000..c440f53 --- /dev/null +++ b/03-app-dotnet/upgrade-assistant.clef @@ -0,0 +1,147 @@ +{"@t":"2022-12-15T08:32:25.6541475Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"} +{"@t":"2022-12-15T08:32:25.8651752Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"} +{"@t":"2022-12-15T08:32:25.9357753Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9374195Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"BinaryAnalysis","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\binaryanalysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9389236Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9399180Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"try-convert","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\try-convert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9526598Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9557217Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9574896Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9589030Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"MAUI","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\maui","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9730870Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"WCFUpdater","Location":"C:\\Users\\NSunny\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\wcf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:25.9778036Z","@mt":"Loaded {Count} extensions","Count":9,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-12-15T08:32:26.3423343Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.3865923Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Commands, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.4361051Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.DependencyResolver.Core, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.4965400Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.5440313Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.5744753Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.6269365Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.6570658Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.6982828Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.7766281Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Azure.Core, Version=1.25.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8","Extension":"UA_BinaryAnalysis06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.8189545Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Azure.Storage.Blobs, Version=12.13.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8","Extension":"UA_BinaryAnalysis06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.9045310Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:26.9637497Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.0277983Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.1117332Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.1416597Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.2300574Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.2563487Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.2844545Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.3379749Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.3650265Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Source, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.4144263Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.4461918Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.4726959Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.CodeFixes, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.5269492Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"MSBuild.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.6333240Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.6614417Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.AspNetCore.Razor.Language, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Web06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:27.7328947Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Web06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:28.0132901Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"17.4.33122.133","VsPath":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"} +{"@t":"2022-12-15T08:32:28.3815535Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\7.0.100\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"} +{"@t":"2022-12-15T08:32:28.3831624Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional","Version":17,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"} +{"@t":"2022-12-15T08:32:28.6784384Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:28.9379764Z","@mt":"Found package sources: {PackageSources}","@l":"Debug","PackageSources":["https://api.nuget.org/v3/index.json [https://api.nuget.org/v3/index.json]"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetPackageSourceFactory"} +{"@t":"2022-12-15T08:32:29.2469569Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2470801Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2471379Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2471927Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2472464Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2472935Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2473925Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2474494Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2474985Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2475469Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2476072Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2476556Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2477162Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2477759Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2478344Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2479401Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2479635Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2479796Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2479935Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2480484Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2520120Z","@mt":"Finished ordering upgrade steps: {UpgradeStepList}","@l":"Debug","UpgradeStepList":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep, Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep, Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep, Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep, Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-12-15T08:32:29.2848450Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"} +{"@t":"2022-12-15T08:32:29.3473506Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-12-15T08:32:29.3663868Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-12-15T08:32:29.3970561Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"} +{"@t":"2022-12-15T08:32:31.9624093Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.Tasks.Core.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-12-15T08:32:33.2031688Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-12-15T08:32:33.7262953Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"} +{"@t":"2022-12-15T08:32:34.2124853Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.LibraryModel, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:34.4043005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.4071255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f26bfa1-a1c9-4cc9-8ff4-0143db1b88e6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.4299419Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:34.5682596Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f26bfa1-a1c9-4cc9-8ff4-0143db1b88e6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.5859079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.6248608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.7502332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.7645249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8230016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8230803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b659ed8b-9db9-4e53-aa77-2fc117006199\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8235704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b659ed8b-9db9-4e53-aa77-2fc117006199\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8238226Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8239320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8246062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8246507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8311654Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-12-15T08:32:34.8591643Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-12-15T08:32:34.8630951Z","@mt":"Setting entrypoint to only project in solution: {Project}","Project":"C:\\Nevin\\HACKfest\\2022-Migration-to-.NET-7\\actins with core\\github-actions-course\\03-app-dotnet\\app-dotnet.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep"} +{"@t":"2022-12-15T08:32:34.8646221Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-12-15T08:32:34.8775120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8776331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c8079eed-7773-4c72-a942-12e66ed90ee5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8780755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c8079eed-7773-4c72-a942-12e66ed90ee5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8781929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8782364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8785051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8785430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8840575Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8841289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e1924e32-ec20-4d7d-8422-8d4845e1283f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8844459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e1924e32-ec20-4d7d-8422-8d4845e1283f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8845304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8845727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8848240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8848518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.8867891Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-12-15T08:32:34.8995946Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-12-15T08:32:34.9024513Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-12-15T08:32:34.9120638Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-12-15T08:32:34.9139192Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-12-15T08:32:34.9140342Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-12-15T08:32:34.9239486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9240509Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\341a78c6-9d12-4ee9-b66e-fd76e59736a8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9244376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\341a78c6-9d12-4ee9-b66e-fd76e59736a8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9245348Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9245779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9248395Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9248700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9297634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9298464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\04870a02-30a1-40f9-8691-4e7f96671061\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9301277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\NSunny\\AppData\\Local\\Temp\\dotnet-ua\\restores\\04870a02-30a1-40f9-8691-4e7f96671061\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9302145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9302678Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9305218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9305507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-12-15T08:32:34.9312302Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-12-15T08:32:34.9317659Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-12-15T08:32:34.9339783Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-12-15T08:32:41.1441133Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep"} +{"@t":"2022-12-15T08:32:41.1460108Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep"} +{"@t":"2022-12-15T08:32:42.4782745Z","@mt":"No applicable upgrade steps found","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-12-15T08:32:42.4787565Z","@mt":"Upgrade has completed. Please review any changes.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleUpgrade"} +{"@t":"2022-12-15T08:32:42.4861178Z","@mt":"No state to save","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.FileUpgradeStateFactory"} +{"@t":"2022-12-15T08:32:42.4941336Z","@mt":"Hosting started","@l":"Debug","EventId":{"Id":2,"Name":"Started"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"} +{"@t":"2022-12-15T08:32:42.4959345Z","@mt":"Hosting stopping","@l":"Debug","EventId":{"Id":3,"Name":"Stopping"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"} +{"@t":"2022-12-15T08:32:42.5079078Z","@mt":"Hosting stopped","@l":"Debug","EventId":{"Id":4,"Name":"Stopped"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"} +{"@t":"2022-12-15T08:32:42.5106134Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_NuGet06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:42.5126455Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_BinaryAnalysis06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:42.5126945Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Default06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:42.5127088Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_try-convert06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:42.5127186Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_VB06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:42.5127272Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Web06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:42.5127397Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_windows06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:42.5127515Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_MAUI06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-12-15T08:32:42.5127618Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_WCFUpdater06975173d6e441269866068e14efa5d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} diff --git a/README.md b/README.md index 6de9ec4..ec91095 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,4 @@ # github-actions-course Samples for Github Actions DevOps pipelines and workflows -[![010-blank-workflow](https://github.com/HoussemDellai/github-actions-course/actions/workflows/010-blank-workflow.yml/badge.svg)](https://github.com/HoussemDellai/github-actions-course/actions/workflows/010-blank-workflow.yml) - -[![020-manual-workflow](https://github.com/HoussemDellai/github-actions-course/actions/workflows/020-manual-input-workflow.yml/badge.svg)](https://github.com/HoussemDellai/github-actions-course/actions/workflows/020-manual-input-workflow.yml) - -[![030-dotnet-workflow](https://github.com/HoussemDellai/github-actions-course/actions/workflows/030-dotnet-workflow.yml/badge.svg)](https://github.com/HoussemDellai/github-actions-course/actions/workflows/030-dotnet-workflow.yml) - -[![031-build-deploy-webapp-to-azure](https://github.com/HoussemDellai/github-actions-course/actions/workflows/031-build-deploy-webapp-to-azure.yml/badge.svg)](https://github.com/HoussemDellai/github-actions-course/actions/workflows/031-build-deploy-webapp-to-azure.yml) - -[![040-github-linter](https://github.com/HoussemDellai/github-actions-course/actions/workflows/040-github-linter.yml/badge.svg)](https://github.com/HoussemDellai/github-actions-course/actions/workflows/040-github-linter.yml) - -[![050-docker-build-workflow](https://github.com/HoussemDellai/github-actions-course/actions/workflows/050-docker-build-workflow.yml/badge.svg)](https://github.com/HoussemDellai/github-actions-course/actions/workflows/050-docker-build-workflow.yml) - -[![052-docker-ghcr-workflow](https://github.com/HoussemDellai/github-actions-course/actions/workflows/052-docker-ghcr-workflow.yml/badge.svg)](https://github.com/HoussemDellai/github-actions-course/actions/workflows/052-docker-ghcr-workflow.yml) +[![Build and deploy ASP.Net Core app to an Azure Web App](https://github.com/nevin-sunny04/github-actions-course/actions/workflows/azure-webapps-dotnet-core.yml/badge.svg)](https://github.com/nevin-sunny04/github-actions-course/actions/workflows/azure-webapps-dotnet-core.yml) \ No newline at end of file