├── .idea └── .idea.CoreWebAPIWithAppInsights │ └── .idea │ ├── encodings.xml │ ├── git_toolbox_prj.xml │ ├── indexLayout.xml │ ├── projectSettingsUpdater.xml │ ├── vcs.xml │ └── workspace.xml ├── CoreWebAPIWithAppInsights.sln ├── CoreWebAPIWithAppInsights ├── Controllers │ ├── SampleApiController.cs │ └── WeatherForecastController.cs ├── CoreWebAPIWithAppInsights.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json └── obj │ ├── CoreWebAPIWithAppInsights.csproj.nuget.dgspec.json │ ├── CoreWebAPIWithAppInsights.csproj.nuget.g.props │ ├── CoreWebAPIWithAppInsights.csproj.nuget.g.targets │ ├── Debug │ ├── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── CoreWebAPIWithAppInsights.AssemblyInfo.cs │ │ ├── CoreWebAPIWithAppInsights.AssemblyInfoInputs.cache │ │ ├── CoreWebAPIWithAppInsights.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── CoreWebAPIWithAppInsights.assets.cache │ │ └── CoreWebAPIWithAppInsights.csproj.AssemblyReference.cache │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── CoreWebAPIWithAppInsights.AssemblyInfo.cs │ │ ├── CoreWebAPIWithAppInsights.AssemblyInfoInputs.cache │ │ ├── CoreWebAPIWithAppInsights.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── CoreWebAPIWithAppInsights.assets.cache │ │ └── CoreWebAPIWithAppInsights.csproj.AssemblyReference.cache │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ └── rider.project.restore.info └── global.json /.idea/.idea.CoreWebAPIWithAppInsights/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/.idea/.idea.CoreWebAPIWithAppInsights/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.CoreWebAPIWithAppInsights/.idea/git_toolbox_prj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/.idea/.idea.CoreWebAPIWithAppInsights/.idea/git_toolbox_prj.xml -------------------------------------------------------------------------------- /.idea/.idea.CoreWebAPIWithAppInsights/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/.idea/.idea.CoreWebAPIWithAppInsights/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.CoreWebAPIWithAppInsights/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/.idea/.idea.CoreWebAPIWithAppInsights/.idea/projectSettingsUpdater.xml -------------------------------------------------------------------------------- /.idea/.idea.CoreWebAPIWithAppInsights/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/.idea/.idea.CoreWebAPIWithAppInsights/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.idea.CoreWebAPIWithAppInsights/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/.idea/.idea.CoreWebAPIWithAppInsights/.idea/workspace.xml -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights.sln -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/Controllers/SampleApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/Controllers/SampleApiController.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/CoreWebAPIWithAppInsights.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/CoreWebAPIWithAppInsights.csproj -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/Program.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/Properties/launchSettings.json -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/Startup.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/WeatherForecast.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/appsettings.Development.json -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/appsettings.json -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/CoreWebAPIWithAppInsights.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/CoreWebAPIWithAppInsights.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/CoreWebAPIWithAppInsights.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/CoreWebAPIWithAppInsights.csproj.nuget.g.props -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/CoreWebAPIWithAppInsights.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/CoreWebAPIWithAppInsights.csproj.nuget.g.targets -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.AssemblyInfo.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1bf9c63c873c8c295a5f95fabdf600014b01b187 2 | -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.assets.cache -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/net6.0/CoreWebAPIWithAppInsights.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.AssemblyInfo.cs -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1bf9c63c873c8c295a5f95fabdf600014b01b187 2 | -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.assets.cache -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/Debug/netcoreapp3.1/CoreWebAPIWithAppInsights.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/project.assets.json -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/project.nuget.cache -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/CoreWebAPIWithAppInsights/obj/project.packagespec.json -------------------------------------------------------------------------------- /CoreWebAPIWithAppInsights/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16552291945462338 -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoreWebAPIWithAppInsights/HEAD/global.json --------------------------------------------------------------------------------