Skip to content

Commit 748cfb5

Browse files
zhz0704dubiety
andauthored
Implement azure maps weather (#45895)
* Finish generating code * Finish client * Finish client * Finish client * Change coordinates to GeoPosition * Add Models namespace * Change some classes to internal * Generate Azure.Maps.Weather.netstandard2.0.cs * Update changelog.md * Add WeatherLanguage.cs * Minor fixes * Finish adding options * Fix options summary * Add base options * Finish tests and samples * Add properties and fix WeatherClientLiveTestsBase.cs * Finish testing and fix errors * Update readme * Minor fixes * Update cspell.json * Rename samples md * Fix typo * Resolve comments * Update assets.json * Fix ci errors * Update assets.json * Update sdk/maps/Azure.Maps.Weather/src/Models/Options/GetDailyIndicesOptions.cs Co-authored-by: Charlie Chen <[email protected]> * Resolve comments * Update imports * Fix ci errors * Resolve comments * Update assets.json * Remove CodeGenModel and unnecessary usings * Update samples * Remove Azure.Maps.Weather from ci.yml * Rename Druation to DruationInDays in GetAirQualityDailyForecastsOptions.cs --------- Co-authored-by: Charlie Chen <[email protected]>
1 parent 6ca06cc commit 748cfb5

File tree

274 files changed

+22318
-0
lines changed

Some content is hidden

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

274 files changed

+22318
-0
lines changed

.vscode/cspell.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -908,6 +908,14 @@
908908
"POSIX"
909909
]
910910
},
911+
{
912+
"filename": "**/sdk/maps/Azure.Maps.Weather/**/*.cs",
913+
"words": [
914+
"Actuals",
915+
"Bangla",
916+
"Hecto"
917+
]
918+
},
911919
{
912920
"filename": "**/sdk/mediaservices/**/*.cs",
913921
"words": [
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.2.32526.322
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Maps.Weather", "src\Azure.Maps.Weather.csproj", "{086A5E71-2A96-4FB9-801B-A4A0A9A70C49}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Maps.Weather.Tests", "tests\Azure.Maps.Weather.Tests.csproj", "{47DEA0AC-0636-45D6-98A1-2D1A3EE6A821}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{62FA3256-BAC9-4D3D-8D22-9C328983824D}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{086A5E71-2A96-4FB9-801B-A4A0A9A70C49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{086A5E71-2A96-4FB9-801B-A4A0A9A70C49}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{086A5E71-2A96-4FB9-801B-A4A0A9A70C49}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{086A5E71-2A96-4FB9-801B-A4A0A9A70C49}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{47DEA0AC-0636-45D6-98A1-2D1A3EE6A821}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{47DEA0AC-0636-45D6-98A1-2D1A3EE6A821}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{47DEA0AC-0636-45D6-98A1-2D1A3EE6A821}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{47DEA0AC-0636-45D6-98A1-2D1A3EE6A821}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{62FA3256-BAC9-4D3D-8D22-9C328983824D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{62FA3256-BAC9-4D3D-8D22-9C328983824D}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{62FA3256-BAC9-4D3D-8D22-9C328983824D}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{62FA3256-BAC9-4D3D-8D22-9C328983824D}.Release|Any CPU.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
GlobalSection(ExtensibilityGlobals) = postSolution
35+
SolutionGuid = {122670A6-DDC3-4993-85DB-C594DCCD1AA5}
36+
EndGlobalSection
37+
EndGlobal
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Release History
2+
3+
## 1.0.0-beta.1 (Unreleased)
4+
5+
### Features Added
6+
7+
- Initial release
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<!--
3+
Add any shared properties you want for the projects under this package directory that need to be set before the auto imported Directory.Build.props
4+
-->
5+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.props))\Directory.Build.props" />
6+
</Project>

0 commit comments

Comments
 (0)