Skip to content

Commit

Permalink
The AWS Cost and Usage Report Service API allows you to enable and di…
Browse files Browse the repository at this point in the history
…sable the Cost & Usage report, as well as modify the report name, the data granularity, and the delivery preferences.
  • Loading branch information
vellozzi committed Jan 17, 2017
1 parent 9f78864 commit fee3ca9
Show file tree
Hide file tree
Showing 58 changed files with 5,028 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ Unit tests can be found in the **AWSSDK.UnitTests** project.
* Amazon Cognito is a service that makes it easy to save user data, such as app preferences or game state, in the AWS Cloud without writing any backend code or managing any infrastructure. With Amazon Cognito, you can focus on creating great app experiences instead of having to worry about building and managing a backend solution to handle identity management, network state, storage, and sync.
* [AWSSDK.ConfigService](https://www.nuget.org/packages/AWSSDK.ConfigService/)
* AWS Config is a fully managed service that provides you with an AWS resource inventory, configuration history, and configuration change notifications to enable security and governance.
* [AWSSDK.CostAndUsageReport](https://www.nuget.org/packages/AWSSDK.CostAndUsageReport/)
* The AWS Cost and Usage Report Service API allows you to enable and disable the Cost and Usage report, as well as modify the report name, the data granularity, and the delivery preferences.
* [AWSSDK.DatabaseMigrationService](https://www.nuget.org/packages/AWSSDK.DatabaseMigrationService/)
* AWS Database Migration Service (AWS DMS) can migrate your data to and from most widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL Server, Amazon Aurora, MariaDB, and MySQL. The service supports homogeneous migrations such as Oracle to Oracle, and also heterogeneous migrations between different database platforms, such as Oracle to MySQL or MySQL to Amazon Aurora.
* [AWSSDK.DataPipeline](https://www.nuget.org/packages/AWSSDK.DataPipeline/)
Expand Down
263 changes: 263 additions & 0 deletions generator/ServiceModels/cur-2016-2017-01-06.normal.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
{
"version":"2.0",
"metadata":{
"apiVersion":"2017-01-06",
"endpointPrefix":"cur",
"jsonVersion":"1.1",
"protocol":"json",
"serviceFullName":"AWS Cost and Usage Report Service",
"signatureVersion":"v4",
"signingName":"cur",
"targetPrefix":"AWSOrigamiServiceGatewayService",
"uid":"cur-2017-01-06"
},
"operations":{
"DeleteReportDefinition":{
"name":"DeleteReportDefinition",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteReportDefinitionRequest"},
"output":{"shape":"DeleteReportDefinitionResponse"},
"errors":[
{"shape":"InternalErrorException"},
{"shape":"ValidationException"}
],
"documentation":"Delete a specified report definition"
},
"DescribeReportDefinitions":{
"name":"DescribeReportDefinitions",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeReportDefinitionsRequest"},
"output":{"shape":"DescribeReportDefinitionsResponse"},
"errors":[
{"shape":"InternalErrorException"}
],
"documentation":"Describe a list of report definitions owned by the account"
},
"PutReportDefinition":{
"name":"PutReportDefinition",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutReportDefinitionRequest"},
"output":{"shape":"PutReportDefinitionResponse"},
"errors":[
{"shape":"DuplicateReportNameException"},
{"shape":"ReportLimitReachedException"},
{"shape":"InternalErrorException"},
{"shape":"ValidationException"}
],
"documentation":"Create a new report definition"
}
},
"shapes":{
"AWSRegion":{
"type":"string",
"documentation":"Region of customer S3 bucket.",
"enum":[
"us-east-1",
"us-west-1",
"us-west-2",
"eu-central-1",
"eu-west-1",
"ap-southeast-1",
"ap-southeast-2",
"ap-northeast-1"
]
},
"AdditionalArtifact":{
"type":"string",
"documentation":"Enable support for Redshift and/or QuickSight.",
"enum":[
"REDSHIFT",
"QUICKSIGHT"
]
},
"AdditionalArtifactList":{
"type":"list",
"member":{"shape":"AdditionalArtifact"},
"documentation":"A list of additional artifacts."
},
"CompressionFormat":{
"type":"string",
"documentation":"Preferred compression format for report.",
"enum":[
"ZIP",
"GZIP"
]
},
"DeleteReportDefinitionRequest":{
"type":"structure",
"members":{
"ReportName":{"shape":"ReportName"}
},
"documentation":"Request of DeleteReportDefinition"
},
"DeleteReportDefinitionResponse":{
"type":"structure",
"members":{
"ResponseMessage":{"shape":"DeleteResponseMessage"}
},
"documentation":"Response of DeleteReportDefinition"
},
"DeleteResponseMessage":{
"type":"string",
"documentation":"A message indicates if the deletion is successful."
},
"DescribeReportDefinitionsRequest":{
"type":"structure",
"members":{
"MaxResults":{"shape":"MaxResults"},
"NextToken":{"shape":"GenericString"}
},
"documentation":"Request of DescribeReportDefinitions"
},
"DescribeReportDefinitionsResponse":{
"type":"structure",
"members":{
"ReportDefinitions":{"shape":"ReportDefinitionList"},
"NextToken":{"shape":"GenericString"}
},
"documentation":"Response of DescribeReportDefinitions"
},
"DuplicateReportNameException":{
"type":"structure",
"members":{
"Message":{"shape":"ErrorMessage"}
},
"documentation":"This exception is thrown when putting a report preference with a name that already exists.",
"exception":true
},
"ErrorMessage":{
"type":"string",
"documentation":"A message to show the detail of the exception."
},
"GenericString":{
"type":"string",
"documentation":"A generic string."
},
"InternalErrorException":{
"type":"structure",
"members":{
"Message":{"shape":"ErrorMessage"}
},
"documentation":"This exception is thrown on a known dependency failure.",
"exception":true,
"fault":true
},
"MaxResults":{
"type":"integer",
"documentation":"The max number of results returned by the operation.",
"box":true,
"max":5,
"min":5
},
"PutReportDefinitionRequest":{
"type":"structure",
"required":["ReportDefinition"],
"members":{
"ReportDefinition":{"shape":"ReportDefinition"}
},
"documentation":"Request of PutReportDefinition"
},
"PutReportDefinitionResponse":{
"type":"structure",
"members":{
},
"documentation":"Response of PutReportDefinition"
},
"ReportDefinition":{
"type":"structure",
"required":[
"ReportName",
"TimeUnit",
"Format",
"Compression",
"AdditionalSchemaElements",
"S3Bucket",
"S3Prefix",
"S3Region"
],
"members":{
"ReportName":{"shape":"ReportName"},
"TimeUnit":{"shape":"TimeUnit"},
"Format":{"shape":"ReportFormat"},
"Compression":{"shape":"CompressionFormat"},
"AdditionalSchemaElements":{"shape":"SchemaElementList"},
"S3Bucket":{"shape":"S3Bucket"},
"S3Prefix":{"shape":"S3Prefix"},
"S3Region":{"shape":"AWSRegion"},
"AdditionalArtifacts":{"shape":"AdditionalArtifactList"}
},
"documentation":"The definition of AWS Cost and Usage Report. Customer can specify the report name, time unit, report format, compression format, S3 bucket and additional artifacts and schema elements in the definition."
},
"ReportDefinitionList":{
"type":"list",
"member":{"shape":"ReportDefinition"},
"documentation":"A list of report definitions."
},
"ReportFormat":{
"type":"string",
"documentation":"Preferred format for report.",
"enum":["textORcsv"]
},
"ReportLimitReachedException":{
"type":"structure",
"members":{
"Message":{"shape":"ErrorMessage"}
},
"documentation":"This exception is thrown when the number of report preference reaches max limit. The max number is 5.",
"exception":true
},
"ReportName":{
"type":"string",
"documentation":"Preferred name for a report, it has to be unique. Must starts with a number/letter, case sensitive. Limited to 256 characters.",
"max":256,
"pattern":"[0-9A-Za-z!\\-_.*\\'()]+"
},
"S3Bucket":{
"type":"string",
"documentation":"Name of customer S3 bucket.",
"max":256
},
"S3Prefix":{
"type":"string",
"documentation":"Preferred report path prefix. Limited to 256 characters.",
"max":256,
"pattern":"[0-9A-Za-z!\\-_.*\\'()/]*"
},
"SchemaElement":{
"type":"string",
"documentation":"Preference of including Resource IDs. You can include additional details about individual resource IDs in your report.",
"enum":["RESOURCES"]
},
"SchemaElementList":{
"type":"list",
"member":{"shape":"SchemaElement"},
"documentation":"A list of schema elements."
},
"TimeUnit":{
"type":"string",
"documentation":"The frequency on which report data are measured and displayed.",
"enum":[
"HOURLY",
"DAILY"
]
},
"ValidationException":{
"type":"structure",
"members":{
"Message":{"shape":"ErrorMessage"}
},
"documentation":"This exception is thrown when providing an invalid input. eg. Put a report preference with an invalid report name, or Delete a report preference with an empty report name.",
"exception":true
}
},
"documentation":"All public APIs for AWS Cost and Usage Report service"
}
24 changes: 24 additions & 0 deletions sdk/AWSSDK.All.sln
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.ConfigService.Net45"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.ConfigService.PCL", "src\Services\ConfigService\AWSSDK.ConfigService.PCL.csproj", "{6A629C05-3726-459B-B62B-4B1119429BC0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CostAndUsageReport", "CostAndUsageReport", "{2B9F4C88-5B7F-4234-5FA7-1289C0A8551A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.CostAndUsageReport.Net35", "src\Services\CostAndUsageReport\AWSSDK.CostAndUsageReport.Net35.csproj", "{F6EA514E-E098-4969-ACB4-D6E2FA0404DA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.CostAndUsageReport.Net45", "src\Services\CostAndUsageReport\AWSSDK.CostAndUsageReport.Net45.csproj", "{E8AA0F9A-34B3-4BAC-B93C-A2CB255A6C33}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.CostAndUsageReport.PCL", "src\Services\CostAndUsageReport\AWSSDK.CostAndUsageReport.PCL.csproj", "{AE612252-E2C0-424D-976C-492A7A9BB9D1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DatabaseMigrationService", "DatabaseMigrationService", "{F9C64E3C-5049-4B65-62CB-8867884B19A1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.DatabaseMigrationService.Net35", "src\Services\DatabaseMigrationService\AWSSDK.DatabaseMigrationService.Net35.csproj", "{BA323E0A-7441-4899-BDD0-96ECCE837B48}"
Expand Down Expand Up @@ -1240,6 +1248,18 @@ Global
{6A629C05-3726-459B-B62B-4B1119429BC0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6A629C05-3726-459B-B62B-4B1119429BC0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6A629C05-3726-459B-B62B-4B1119429BC0}.Release|Any CPU.Build.0 = Release|Any CPU
{F6EA514E-E098-4969-ACB4-D6E2FA0404DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F6EA514E-E098-4969-ACB4-D6E2FA0404DA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F6EA514E-E098-4969-ACB4-D6E2FA0404DA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F6EA514E-E098-4969-ACB4-D6E2FA0404DA}.Release|Any CPU.Build.0 = Release|Any CPU
{E8AA0F9A-34B3-4BAC-B93C-A2CB255A6C33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E8AA0F9A-34B3-4BAC-B93C-A2CB255A6C33}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E8AA0F9A-34B3-4BAC-B93C-A2CB255A6C33}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E8AA0F9A-34B3-4BAC-B93C-A2CB255A6C33}.Release|Any CPU.Build.0 = Release|Any CPU
{AE612252-E2C0-424D-976C-492A7A9BB9D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AE612252-E2C0-424D-976C-492A7A9BB9D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AE612252-E2C0-424D-976C-492A7A9BB9D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AE612252-E2C0-424D-976C-492A7A9BB9D1}.Release|Any CPU.Build.0 = Release|Any CPU
{BA323E0A-7441-4899-BDD0-96ECCE837B48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BA323E0A-7441-4899-BDD0-96ECCE837B48}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA323E0A-7441-4899-BDD0-96ECCE837B48}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -2248,6 +2268,10 @@ Global
{95FFA7BA-A05D-4328-82CE-3362FFA3B85F} = {DFE2B09D-735C-F02A-F891-64272C346AAC}
{844769FF-BA07-49FB-94A2-08EEA8AC2DC3} = {DFE2B09D-735C-F02A-F891-64272C346AAC}
{6A629C05-3726-459B-B62B-4B1119429BC0} = {DFE2B09D-735C-F02A-F891-64272C346AAC}
{2B9F4C88-5B7F-4234-5FA7-1289C0A8551A} = {03245B8D-0A27-4C11-9AAC-7047A9F6DFB0}
{F6EA514E-E098-4969-ACB4-D6E2FA0404DA} = {2B9F4C88-5B7F-4234-5FA7-1289C0A8551A}
{E8AA0F9A-34B3-4BAC-B93C-A2CB255A6C33} = {2B9F4C88-5B7F-4234-5FA7-1289C0A8551A}
{AE612252-E2C0-424D-976C-492A7A9BB9D1} = {2B9F4C88-5B7F-4234-5FA7-1289C0A8551A}
{F9C64E3C-5049-4B65-62CB-8867884B19A1} = {03245B8D-0A27-4C11-9AAC-7047A9F6DFB0}
{BA323E0A-7441-4899-BDD0-96ECCE837B48} = {F9C64E3C-5049-4B65-62CB-8867884B19A1}
{F96FE0F9-FA8A-4142-9291-441097F7884B} = {F9C64E3C-5049-4B65-62CB-8867884B19A1}
Expand Down
8 changes: 8 additions & 0 deletions sdk/AWSSDK.CodeAnalysis.sln
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.CognitoSync.CodeAnal
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.ConfigService.CodeAnalysis", "code-analysis\ServiceAnalysis\ConfigService\AWSSDK.ConfigService.CodeAnalysis.csproj", "{2F79A9E2-BE9C-43DB-876A-A7F16A5B64AC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.CostAndUsageReport.CodeAnalysis", "code-analysis\ServiceAnalysis\CostAndUsageReport\AWSSDK.CostAndUsageReport.CodeAnalysis.csproj", "{F03AF29A-5DE2-45C4-BB91-75713E672A10}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.DatabaseMigrationService.CodeAnalysis", "code-analysis\ServiceAnalysis\DatabaseMigrationService\AWSSDK.DatabaseMigrationService.CodeAnalysis.csproj", "{B0032676-356E-4ABA-A252-890237EAF9C3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AWSSDK.DataPipeline.CodeAnalysis", "code-analysis\ServiceAnalysis\DataPipeline\AWSSDK.DataPipeline.CodeAnalysis.csproj", "{CA4F8900-EA2E-44CD-AFCC-B4BE1F7AF3EA}"
Expand Down Expand Up @@ -224,6 +226,7 @@ Global
code-analysis\SharedAnalysisCode\SharedAnalysisCode.projitems*{f73f43c5-4f14-456c-832c-530caa752428}*SharedItemsImports = 4
code-analysis\SharedAnalysisCode\SharedAnalysisCode.projitems*{ebe2d008-5a2b-4314-b243-ba043baff60a}*SharedItemsImports = 4
code-analysis\SharedAnalysisCode\SharedAnalysisCode.projitems*{2f79a9e2-be9c-43db-876a-a7f16a5b64ac}*SharedItemsImports = 4
code-analysis\SharedAnalysisCode\SharedAnalysisCode.projitems*{f03af29a-5de2-45c4-bb91-75713e672a10}*SharedItemsImports = 4
code-analysis\SharedAnalysisCode\SharedAnalysisCode.projitems*{b0032676-356e-4aba-a252-890237eaf9c3}*SharedItemsImports = 4
code-analysis\SharedAnalysisCode\SharedAnalysisCode.projitems*{ca4f8900-ea2e-44cd-afcc-b4be1f7af3ea}*SharedItemsImports = 4
code-analysis\SharedAnalysisCode\SharedAnalysisCode.projitems*{5243bcf3-1ef1-4878-bfc0-6ed9caf57881}*SharedItemsImports = 4
Expand Down Expand Up @@ -408,6 +411,10 @@ Global
{2F79A9E2-BE9C-43DB-876A-A7F16A5B64AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2F79A9E2-BE9C-43DB-876A-A7F16A5B64AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2F79A9E2-BE9C-43DB-876A-A7F16A5B64AC}.Release|Any CPU.Build.0 = Release|Any CPU
{F03AF29A-5DE2-45C4-BB91-75713E672A10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F03AF29A-5DE2-45C4-BB91-75713E672A10}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F03AF29A-5DE2-45C4-BB91-75713E672A10}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F03AF29A-5DE2-45C4-BB91-75713E672A10}.Release|Any CPU.Build.0 = Release|Any CPU
{B0032676-356E-4ABA-A252-890237EAF9C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0032676-356E-4ABA-A252-890237EAF9C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0032676-356E-4ABA-A252-890237EAF9C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -694,6 +701,7 @@ Global
{F73F43C5-4F14-456C-832C-530CAA752428} = {1523203C-CD16-4B4A-8F9D-8ECCA3A327AA}
{EBE2D008-5A2B-4314-B243-BA043BAFF60A} = {1523203C-CD16-4B4A-8F9D-8ECCA3A327AA}
{2F79A9E2-BE9C-43DB-876A-A7F16A5B64AC} = {1523203C-CD16-4B4A-8F9D-8ECCA3A327AA}
{F03AF29A-5DE2-45C4-BB91-75713E672A10} = {1523203C-CD16-4B4A-8F9D-8ECCA3A327AA}
{B0032676-356E-4ABA-A252-890237EAF9C3} = {1523203C-CD16-4B4A-8F9D-8ECCA3A327AA}
{CA4F8900-EA2E-44CD-AFCC-B4BE1F7AF3EA} = {1523203C-CD16-4B4A-8F9D-8ECCA3A327AA}
{5243BCF3-1EF1-4878-BFC0-6ED9CAF57881} = {1523203C-CD16-4B4A-8F9D-8ECCA3A327AA}
Expand Down
11 changes: 11 additions & 0 deletions sdk/AWSSDK.CoreCLR.sln
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ConfigService", "ConfigServ
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AWSSDK.ConfigService.CoreCLR", "src\Services\ConfigService\AWSSDK.ConfigService.CoreCLR.xproj", "{E0C3902C-14E6-4680-95DA-1D348FCC0648}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CostAndUsageReport", "CostAndUsageReport", "{2B9F4C88-5B7F-4234-5FA7-1289C0A8551A}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AWSSDK.CostAndUsageReport.CoreCLR", "src\Services\CostAndUsageReport\AWSSDK.CostAndUsageReport.CoreCLR.xproj", "{9DA65DC7-27CA-4DFD-95E2-71983031CA1D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DatabaseMigrationService", "DatabaseMigrationService", "{F9C64E3C-5049-4B65-62CB-8867884B19A1}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AWSSDK.DatabaseMigrationService.CoreCLR", "src\Services\DatabaseMigrationService\AWSSDK.DatabaseMigrationService.CoreCLR.xproj", "{3EFD66B2-BB4F-4071-A71F-AA8F38C96F09}"
Expand Down Expand Up @@ -527,6 +531,11 @@ Global
{E0C3902C-14E6-4680-95DA-1D348FCC0648}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E0C3902C-14E6-4680-95DA-1D348FCC0648}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E0C3902C-14E6-4680-95DA-1D348FCC0648}.Release|Any CPU.Build.0 = Release|Any CPU
{2B9F4C88-5B7F-4234-5FA7-1289C0A8551A} = {03245B8D-0A27-4C11-9AAC-7047A9F6DFB0}
{9DA65DC7-27CA-4DFD-95E2-71983031CA1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9DA65DC7-27CA-4DFD-95E2-71983031CA1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9DA65DC7-27CA-4DFD-95E2-71983031CA1D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9DA65DC7-27CA-4DFD-95E2-71983031CA1D}.Release|Any CPU.Build.0 = Release|Any CPU
{F9C64E3C-5049-4B65-62CB-8867884B19A1} = {03245B8D-0A27-4C11-9AAC-7047A9F6DFB0}
{3EFD66B2-BB4F-4071-A71F-AA8F38C96F09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3EFD66B2-BB4F-4071-A71F-AA8F38C96F09}.Debug|Any CPU.Build.0 = Debug|Any CPU
Expand Down Expand Up @@ -879,6 +888,8 @@ Global
{76C2C545-4A26-41EB-AF53-F4EFDD282028} = {BFD52C21-25C3-EA8F-2C70-81D8FF2130F9}
{DFE2B09D-735C-F02A-F891-64272C346AAC} = {03245B8D-0A27-4C11-9AAC-7047A9F6DFB0}
{E0C3902C-14E6-4680-95DA-1D348FCC0648} = {DFE2B09D-735C-F02A-F891-64272C346AAC}
{2B9F4C88-5B7F-4234-5FA7-1289C0A8551A} = {03245B8D-0A27-4C11-9AAC-7047A9F6DFB0}
{9DA65DC7-27CA-4DFD-95E2-71983031CA1D} = {2B9F4C88-5B7F-4234-5FA7-1289C0A8551A}
{F9C64E3C-5049-4B65-62CB-8867884B19A1} = {03245B8D-0A27-4C11-9AAC-7047A9F6DFB0}
{3EFD66B2-BB4F-4071-A71F-AA8F38C96F09} = {F9C64E3C-5049-4B65-62CB-8867884B19A1}
{347F2054-E610-10E5-80D5-997084335FC1} = {03245B8D-0A27-4C11-9AAC-7047A9F6DFB0}
Expand Down
Loading

0 comments on commit fee3ca9

Please sign in to comment.