Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ba2c771
Update README.md
Rajkumarr77 Feb 20, 2025
6ab4e73
Update README.md
Rajkumarr77 Feb 20, 2025
1be0cdf
Update README.md
Rajkumarr77 Feb 20, 2025
58019fb
Update README.md
Rajkumarr77 Feb 20, 2025
e5b03ca
Update README.md
Rajkumarr77 Feb 21, 2025
b194929
Update README.md
Rajkumarr77 Feb 21, 2025
7193fef
Update README.md
Rajkumarr77 Feb 21, 2025
7f422de
Update README.md
Rajkumarr77 Feb 24, 2025
7d742d8
Update README.md
Rajkumarr77 Feb 24, 2025
df7a0eb
Update README.md
Rajkumarr77 Feb 27, 2025
c60534c
Update README.md
Rajkumarr77 Feb 27, 2025
3aa0e90
Update README.md
Rajkumarr77 Feb 27, 2025
0ceb459
Update README.md
Rajkumarr77 Feb 27, 2025
653a10b
Update README.md
Rajkumarr77 Mar 24, 2025
07269d4
Update README.md
Rajkumarr77 Mar 24, 2025
ac9b449
Update README.md
Rajkumarr77 Mar 28, 2025
305d3ed
Update README.md
Rajkumarr77 Mar 28, 2025
b953196
Update README.md
Rajkumarr77 Mar 28, 2025
b855b20
Update README.md
Rajkumarr77 Mar 28, 2025
29a40ff
Update README.md
Rajkumarr77 Mar 28, 2025
060b385
Update README.md
Rajkumarr77 Mar 28, 2025
dd58cf7
Update README.md
Rajkumarr77 Apr 2, 2025
69ea37d
Update README.md
Rajkumarr77 Apr 3, 2025
3ae0f6a
Update README.md
Rajkumarr77 Apr 21, 2025
4215d1b
Merge pull request #7 from rajtestinggithub/ProfileTesting
Rajkumarr77 Apr 21, 2025
982f5a6
Update README.md
Rajkumarr77 May 23, 2025
6193cbb
Update README.md
Rajkumarr77 Jul 16, 2025
62404c5
Update README.md
Rajkumarr77 Sep 30, 2025
3f7555d
Update README.md
Rajkumarr77 Sep 30, 2025
3131981
Update README.md
Rajkumarr77 Dec 29, 2025
14773f6
Set up CI with Azure Pipelines
Rajkumarr77 Feb 10, 2026
dccca56
Update README.md
Rajkumarr77 Mar 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
# [:] Example Dotnet Project
[:] Example Dotnet Project

###Testing
#Test678
#Profiletesting
#Test59
#test99
#TESTSCA
#TestDEC
#debug testing
#March18th


An example dotnet project to demonstrate [srcclr](https://www.srcclr.com) scans.

## Try me!
# Try me!

For running scan install .NetFramework and msbuild

### Windows
###Windows


```
choco install srcclr
Expand All @@ -16,7 +28,7 @@ msbuild example-dotnet/
srcclr scan example-dotnet/
```

### OSX
## OSX
```
brew tap srcclr/srcclr
brew install srcclr
Expand All @@ -25,3 +37,8 @@ git clone https://github.com/srcclr/example-dotnet
msbuild example-dotnet/
srcclr scan example-dotnet/
```
Test 1
TEST 2
TEST


34 changes: 34 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4

trigger:
- master

pool:
vmImage: 'windows-latest'

variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'

steps:
- task: NuGetToolInstaller@1

- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'

- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'

- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'