From 8c1b393aaf825d6c52ab5afc7144a70d2541fd0f Mon Sep 17 00:00:00 2001 From: Johan Broberg Date: Wed, 5 Nov 2025 10:31:20 -0800 Subject: [PATCH 1/2] Added CODEOWNERS --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..13f1b911 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @microsoft/agent365-approvers \ No newline at end of file From 83855fe1f689967e88492c911db8d478aa0089e1 Mon Sep 17 00:00:00 2001 From: Johan Broberg Date: Wed, 5 Nov 2025 10:32:11 -0800 Subject: [PATCH 2/2] Added .gitignore --- .gitignore | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..32331b3f --- /dev/null +++ b/.gitignore @@ -0,0 +1,104 @@ +## A streamlined .gitignore for modern .NET projects +## including temporary files, build results, and +## files generated by popular .NET tools. If you are +## developing with Visual Studio, the VS .gitignore +## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore +## has more thorough IDE-specific entries. +## +## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Locally built Nuget package cache file +.lastbuild + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg + +# Others +~$* +*~ +CodeCoverage/ + +# MSBuild Binary and Structured Log +*. +*.log + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# Visual Studio +.vs/ + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Python build artifacts +*.egg-info/ +__pycache__/ +*.py[cod] +*$py.class +*.pyc +*.pyo +*.pyd +dist/ +build/ +.eggs/ +.pytest_cache/ +_version.py + +# Virtual environments +.venv/ +venv/ +env/ +.env +.env/ +*.env + +# JavaScript/Node.js build artifacts +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +package-lock.json.bak +.cache/ +.next/ +out/ +coverage/ + +# We should have at some point .vscode, but for not ignore since we don't have standard +.vscode +.claude/ +**/.claude/ +.idea/ + +# OS-specific files +.DS_Store +Thumbs.db \ No newline at end of file