Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
stavroskasidis committed Feb 3, 2022
2 parents ccc9a13 + e56d635 commit d8594cf
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This package injects some custom MSBuild tasks that do the following:
3. Adds a `beforeStart` js blazor initialization module, using a custom `loadBootResource` function to restore the MZ header of the dll after downloaded but before loaded by dotnet.wasm

## How to use
1. Add the nuget package in your Client (wasm) AND your Server (if blazor wasm hosted) projects
1. Add the nuget package in your **Client** (wasm) AND your **Server** (if blazor wasm hosted) projects
```
> dotnet add package BlazorWasmAntivirusProtection
Expand Down
34 changes: 34 additions & 0 deletions azure-pipelines-sample-apps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml

trigger:
branches:
include:
- master
paths:
include:
- sampleapps

pool:
vmImage: ubuntu-latest

workspace:
clean: all

steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
useGlobalJson: true
- task: PowerShell@2
inputs:
filePath: 'scripts/build-sample-apps.ps1'
arguments: '$(VersionSuffix)'

- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: 'artifacts/sample-apps'
ArtifactName: 'drop'
publishLocation: 'Container'
10 changes: 8 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core

trigger:
- master
- develop
branches:
include:
- master
- develop
paths:
include:
- src


pool:
vmImage: 'windows-latest'
Expand Down

0 comments on commit d8594cf

Please sign in to comment.