├── .gitattributes ├── .gitignore ├── Calculator.cs ├── CopilotForVS2022.csproj ├── CopilotForVS2022.sln └── Program.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CopilotForVS2022/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CopilotForVS2022/HEAD/.gitignore -------------------------------------------------------------------------------- /Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CopilotForVS2022/HEAD/Calculator.cs -------------------------------------------------------------------------------- /CopilotForVS2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CopilotForVS2022/HEAD/CopilotForVS2022.csproj -------------------------------------------------------------------------------- /CopilotForVS2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CopilotForVS2022/HEAD/CopilotForVS2022.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CopilotForVS2022/HEAD/Program.cs --------------------------------------------------------------------------------