We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb63d34 commit 4436871Copy full SHA for 4436871
.gitignore
@@ -1,3 +1,5 @@
1
+/artifacts/
2
+
3
## Ignore Visual Studio temporary files, build results, and
4
## files generated by popular Visual Studio add-ons.
5
build.bat
@@ -0,0 +1,10 @@
+REM optional clean
+REM rm -rf artifacts CoreTests/bin CoreTests/obj CoreIntegrationTests/bin CoreIntegrationTests/obj Microsoft.AspNetCore.Identity.MongoDB/bin Microsoft.AspNetCore.Identity.MongoDB/obj
+dotnet restore src
+dotnet test -c Release src/CoreTests
6
+dotnet test -c Release src/CoreIntegrationTests
7
+dotnet pack -c Release -o artifacts src/Microsoft.AspNetCore.Identity.MongoDB
8
9
+REM nuget add artifacts\X.nupkg -Source C:\Code\scratch\localnugetfeedtesting
10
+REM nuget publish artifacts\X.nupkg
src/build.sh
0 commit comments