Skip to content

Commit 31df144

Browse files
Renames to Dev Proxy
1 parent fd03639 commit 31df144

File tree

91 files changed

+213
-213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+213
-213
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @microsoft/m365-developer-proxy-write
1+
* @microsoft/dev-proxy-write

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ body:
3838
validations:
3939
required: true
4040
- type: input
41-
id: m365proxyversion
41+
id: devproxyversion
4242
attributes:
43-
label: Microsoft 365 Developer Proxy Version
43+
label: Dev Proxy Version
4444
description: |
4545
Provide the version of the proxy you are using.
4646
47-
Execute `m365proxy --version` in your terminal to identify your version
47+
Execute `devproxy --version` in your terminal to identify your version
4848
validations:
4949
required: true
5050
- type: dropdown

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
33
- package-ecosystem: nuget
4-
directory: "/m365-developer-proxy"
4+
directory: "/dev-proxy"
55
schedule:
66
interval: daily
77
open-pull-requests-limit: 5

.github/policies/m365-developer-proxy-branch-protection.yml renamed to .github/policies/dev-proxy-branch-protection.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
# File initially created using https://github.com/MIchaelMainer/policyservicetoolkit/blob/main/branch_protection_export.ps1.
55

6-
name: m365-developer-proxy-branch-protection
7-
description: Branch protection policy for the m365-developer-proxy repository
6+
name: dev-proxy-branch-protection
7+
description: Branch protection policy for the dev-proxy repository
88
resource: repository
99
configuration:
1010
branchProtectionRules:

.github/workflows/create-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
- linux-x64
1616
- osx-x64
1717
env:
18-
release: 'm365-developer-proxy-${{ matrix.architecture }}-${{ github.ref_name }}'
18+
release: 'dev-proxy-${{ matrix.architecture }}-${{ github.ref_name }}'
1919
steps:
2020
- uses: actions/checkout@v3
2121
- name: Setup .NET
2222
uses: actions/setup-dotnet@v3
2323
with:
2424
dotnet-version: 7.0.x
2525
- name: Publish ${{ matrix.architecture }}
26-
run: dotnet publish ./m365-developer-proxy/m365-developer-proxy.csproj -c Release -p:PublishSingleFile=true -r ${{ matrix.architecture }} --self-contained -o ./${{ env.release }}
26+
run: dotnet publish ./dev-proxy/dev-proxy.csproj -c Release -p:PublishSingleFile=true -r ${{ matrix.architecture }} --self-contained -o ./${{ env.release }}
2727
- name: Build plugins
28-
run: dotnet build ./m365-developer-proxy-plugins/m365-developer-proxy-plugins.csproj -c Release -r ${{ matrix.architecture }} --no-self-contained
28+
run: dotnet build ./dev-proxy-plugins/dev-proxy-plugins.csproj -c Release -r ${{ matrix.architecture }} --no-self-contained
2929
- name: Add plugins to output
30-
run: cp ./m365-developer-proxy/bin/Release/net7.0/${{ matrix.architecture }}/plugins ./${{ env.release }} -r
30+
run: cp ./dev-proxy/bin/Release/net7.0/${{ matrix.architecture }}/plugins ./${{ env.release }} -r
3131
- name: Remove unnecessary files
3232
run: |
3333
pushd

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
- name: Restore workloads
2424
run: dotnet workload restore
2525
- name: Restore dependencies
26-
run: dotnet restore m365-developer-proxy.sln
26+
run: dotnet restore dev-proxy.sln
2727
- name: Build
28-
run: dotnet build m365-developer-proxy.sln --no-restore
28+
run: dotnet build dev-proxy.sln --no-restore
2929
# We really should have tests, putting these steps here for when we have a build process
3030
# - name: Test
31-
# run: dotnet test m365-developer-proxy.sln --no-build --verbosity normal --collect:"XPlat Code Coverage"
31+
# run: dotnet test dev-proxy.sln --no-build --verbosity normal --collect:"XPlat Code Coverage"
3232
# - name: Install report generator
3333
# run: dotnet tool install --global dotnet-reportgenerator-globaltool
3434
# - name: Generate coverage report

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/m365-developer-proxy/bin/Debug/net7.0/m365proxy.dll",
13+
"program": "${workspaceFolder}/dev-proxy/bin/Debug/net7.0/devproxy.dll",
1414
"args": [],
15-
"cwd": "${workspaceFolder}/m365-developer-proxy/bin/Debug/net7.0",
15+
"cwd": "${workspaceFolder}/dev-proxy/bin/Debug/net7.0",
1616
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
1717
"console": "integratedTerminal",
1818
"stopAtEntry": false,

.vscode/tasks.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "process",
88
"args": [
99
"build",
10-
"${workspaceFolder}/m365-developer-proxy.sln",
10+
"${workspaceFolder}/dev-proxy.sln",
1111
"/property:GenerateFullPaths=true",
1212
"/consoleloggerparameters:NoSummary"
1313
],
@@ -19,7 +19,7 @@
1919
"type": "process",
2020
"args": [
2121
"publish",
22-
"${workspaceFolder}/m365-developer-proxy.sln",
22+
"${workspaceFolder}/dev-proxy.sln",
2323
"/property:GenerateFullPaths=true",
2424
"/consoleloggerparameters:NoSummary"
2525
],
@@ -33,7 +33,7 @@
3333
"watch",
3434
"run",
3535
"--project",
36-
"${workspaceFolder}/m365-developer-proxy.sln"
36+
"${workspaceFolder}/dev-proxy.sln"
3737
],
3838
"problemMatcher": "$msCompile"
3939
}

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Contributing to the Microsoft 365 Developer Proxy
1+
# Contributing to Dev Proxy
22

3-
The best way to contribute initially is to download and try the Microsoft 365 Developer Proxy and then give us your feedback, both positive and negative, this will help us shape the future direction of this tool. At present we are not accepting community code contributions but will be opening up to accept pull requests in the future.
3+
The best way to contribute initially is to download and try Dev Proxy and then give us your feedback, both positive and negative, this will help us shape the future direction of this tool. At present we are not accepting community code contributions but will be opening up to accept pull requests in the future.
44

55
## Our foundation
66

7-
The Microsoft 365 Developer Proxy is built with .NET 6 and uses the [Titanium.Web.Proxy](https://github.com/justcoding121/titanium-web-proxy).
7+
The Dev Proxy is built with .NET 6 and uses the [Titanium.Web.Proxy](https://github.com/justcoding121/titanium-web-proxy).
88

99
## Reporting issues and suggesting new features
1010

11-
Please use [GitHub Issues](https://github.com/microsoft/m365-developer-proxy/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc) for bug reports and feature request.
11+
Please use [GitHub Issues](https://github.com/microsoft/dev-proxy/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc) for bug reports and feature request.
1212

1313
We highly recommend you browse existing issues first.
1414

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<h1 align="center">
2-
<img alt="Microsoft 365 Developer Proxy" src="./samples/img/microsoft.png" height="78" />
3-
<br>Microsoft 365 Developer Proxy<br>
2+
<img alt="Dev Proxy" src="./samples/img/microsoft.png" height="78" />
3+
<br>Dev Proxy<br>
44
</h1>
55

66
<h4 align="center">
77
Build reliable Microsoft 365 apps
88
</h4>
99

1010
<p align="center">
11-
<a href="https://github.com/microsoft/m365-developer-proxy/releases/latest">
11+
<a href="https://github.com/microsoft/dev-proxy/releases/latest">
1212
<img alt="Download Now" src="https://img.shields.io/badge/download-now-green?style=for-the-badge">
1313
</a>
1414
</p>
@@ -20,7 +20,7 @@
2020

2121
<p align="center">
2222
<a href="#get-started">Get started</a> |
23-
<a href="https://github.com/microsoft/m365-developer-proxy/wiki/">Documentation</a>
23+
<a href="https://github.com/microsoft/dev-proxy/wiki/">Documentation</a>
2424
</p>
2525

2626
<p align="center">
@@ -36,7 +36,7 @@
3636
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-camera-video">
3737
<path d="M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75Zm-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-6.5ZM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z"></path>
3838
</svg>
39-
<span aria-label="" class="m-1">📽️ Simulate throttling using Microsoft 365 Developer Proxy</span>
39+
<span aria-label="" class="m-1">📽️ Simulate throttling using Dev Proxy</span>
4040
<span class="dropdown-caret"></span>
4141
</summary>
4242

@@ -46,7 +46,7 @@
4646
</details>
4747
</p>
4848

49-
Microsoft 365 Developer Proxy is a command line tool for testing Microsoft Graph, SharePoint Online and any other HTTP APIs.
49+
Dev Proxy is a command line tool for testing Microsoft Graph, SharePoint Online and any other HTTP APIs.
5050

5151
It aims to provide a better way to test applications.
5252

@@ -60,14 +60,14 @@ Identify and fix issues in your code before they reach production.
6060

6161
## Get started
6262

63-
Begin with our [tutorial](https://github.com/microsoft/m365-developer-proxy/wiki/Get-started). It will guide you through the installation process and running the proxy for the first time.
63+
Begin with our [tutorial](https://github.com/microsoft/dev-proxy/wiki/Get-started). It will guide you through the installation process and running the proxy for the first time.
6464

6565
## Example
6666

6767
Fail requests (with a 50% chance) and respond with `429 Too Many Requests` or `503 Service Unavailable`:
6868

6969
```
70-
m365proxy --failure-rate 50 --no-mocks --allowed-errors 429 503
70+
devproxy --failure-rate 50 --no-mocks --allowed-errors 429 503
7171
```
7272

7373
## Features
@@ -105,7 +105,7 @@ This project may contain trademarks or logos for projects, products, or services
105105

106106
## Community Preview
107107

108-
We are working on getting the General Availability (GA) version published within the calendar year 2023. The current state of the Microsoft 365 Developer Proxy enables our team to be transparent and provide more insights on the upcoming features and to provide our worldwide ecosystem an option to directly influence the future of our capabilities. [Your feedback is more than welcome](https://github.com/microsoft/m365-developer-proxy/issues)! You can expect many more new features within the upcoming months before a version that is officially ready for production use and fully supported.
108+
We are working on getting the General Availability (GA) version published within the calendar year 2023. The current state of Dev Proxy enables our team to be transparent and provide more insights on the upcoming features and to provide our worldwide ecosystem an option to directly influence the future of our capabilities. [Your feedback is more than welcome](https://github.com/microsoft/dev-proxy/issues)! You can expect many more new features within the upcoming months before a version that is officially ready for production use and fully supported.
109109

110110
## A Microsoft Hackathon 2022 Project
111111

0 commit comments

Comments
 (0)