Skip to content

Commit 5c669c1

Browse files
committed
Add Packages
0 parents  commit 5c669c1

File tree

1,002 files changed

+654752
-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.

1,002 files changed

+654752
-0
lines changed
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/MonoAndroid10/AWSSDK.Core.XML

+7,979
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/MonoTouch10/AWSSDK.Core.XML

+7,979
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/Xamarin.Mac20/AWSSDK.Core.XML

+7,979
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/Xamarin.iOS10/AWSSDK.Core.XML

+7,979
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/net35/AWSSDK.Core.XML

+11,403
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/net45/AWSSDK.Core.XML

+11,417
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/netstandard1.3/AWSSDK.Core.xml

+10,426
Large diffs are not rendered by default.

packages/AWSSDK.Core.3.3.13.3/lib/portable-net45+win8+wpa81+wp8/AWSSDK.Core.XML

+7,929
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/uap/AWSSDK.Core.XML

+7,929
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/win8/AWSSDK.Core.XML

+7,929
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/wp8/AWSSDK.Core.XML

+7,929
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.Core.3.3.13.3/lib/wpa81/AWSSDK.Core.XML

+7,929
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
2+
function RegisterProfile()
3+
{
4+
$dllpath = "..\lib\net35\AWSSDK.Core.dll"
5+
$sdkassembly = [System.Reflection.Assembly]::LoadFrom($dllpath)
6+
7+
$completed = $FALSE
8+
do
9+
{
10+
Write-Host "1) Add/Update new profile credentials"
11+
Write-Host "2) List registered profiles"
12+
Write-Host "3) Remove profile credentials"
13+
Write-Host "4) Exit"
14+
15+
Write-Host ""
16+
$choose = Read-Host "Choose an option"
17+
18+
If ($choose -eq "1")
19+
{
20+
$profileName = Read-Host "Profile name: "
21+
$accessKey = Read-Host "Access key: "
22+
$secretKey = Read-Host "Secret key: "
23+
[Amazon.Util.ProfileManager]::RegisterProfile($profileName, $accessKey, $secretKey)
24+
}
25+
ElseIf($choose -eq "2")
26+
{
27+
Write-Host ""
28+
29+
$profiles = [Amazon.Util.ProfileManager]::ListProfileNames() | sort
30+
foreach($profile in $profiles)
31+
{
32+
Write-Host "*" $profile
33+
}
34+
Write-Host ""
35+
}
36+
ElseIf($choose -eq "3")
37+
{
38+
Write-Host ""
39+
40+
$i = 1
41+
$profiles = [Amazon.Util.ProfileManager]::ListProfileNames() | sort
42+
foreach($profile in $profiles)
43+
{
44+
Write-Host $i")" $profile
45+
$i++
46+
}
47+
Write-Host ""
48+
$pick = Read-Host "Select a profile to unregister"
49+
[Amazon.Util.ProfileManager]::UnregisterProfile($profiles[$pick - 1])
50+
}
51+
ElseIf($choose -eq "4")
52+
{
53+
$completed = $TRUE
54+
}
55+
Else
56+
{
57+
Write-Host ""
58+
Write-Host "Unknown choose"
59+
Write-Host ""
60+
}
61+
}while($completed -ne $TRUE)
62+
}
63+
64+
RegisterProfile
Binary file not shown.
Binary file not shown.

packages/AWSSDK.S3.3.3.5.16/lib/MonoAndroid10/AWSSDK.S3.XML

+13,749
Large diffs are not rendered by default.
Binary file not shown.

packages/AWSSDK.S3.3.3.5.16/lib/MonoTouch10/AWSSDK.S3.XML

+13,749
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.S3.3.3.5.16/lib/Xamarin.iOS10/AWSSDK.S3.XML

+13,749
Large diffs are not rendered by default.
Binary file not shown.

packages/AWSSDK.S3.3.3.5.16/lib/net35/AWSSDK.S3.XML

+20,165
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.S3.3.3.5.16/lib/net45/AWSSDK.S3.XML

+19,832
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

packages/AWSSDK.S3.3.3.5.16/lib/netstandard1.3/AWSSDK.S3.xml

+15,954
Large diffs are not rendered by default.

packages/AWSSDK.S3.3.3.5.16/lib/portable-net45+win8+wpa81+wp8/AWSSDK.S3.XML

+13,749
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
param($installPath, $toolsPath, $package, $project)
2+
3+
$analyzersPaths = Join-Path (Join-Path (Split-Path -Path $toolsPath -Parent) "analyzers" ) * -Resolve
4+
5+
foreach($analyzersPath in $analyzersPaths)
6+
{
7+
# Install the language agnostic analyzers.
8+
if (Test-Path $analyzersPath)
9+
{
10+
foreach ($analyzerFilePath in Get-ChildItem $analyzersPath -Filter *.dll)
11+
{
12+
if($project.Object.AnalyzerReferences)
13+
{
14+
$project.Object.AnalyzerReferences.Add($analyzerFilePath.FullName)
15+
}
16+
}
17+
}
18+
}
19+
20+
# $project.Type gives the language name like (C# or VB.NET)
21+
$languageFolder = ""
22+
if($project.Type -eq "C#")
23+
{
24+
$languageFolder = "cs"
25+
}
26+
if($project.Type -eq "VB.NET")
27+
{
28+
$languageFolder = "vb"
29+
}
30+
if($languageFolder -eq "")
31+
{
32+
return
33+
}
34+
35+
foreach($analyzersPath in $analyzersPaths)
36+
{
37+
# Install language specific analyzers.
38+
$languageAnalyzersPath = join-path $analyzersPath $languageFolder
39+
if (Test-Path $languageAnalyzersPath)
40+
{
41+
foreach ($analyzerFilePath in Get-ChildItem $languageAnalyzersPath -Filter *.dll)
42+
{
43+
if($project.Object.AnalyzerReferences)
44+
{
45+
$project.Object.AnalyzerReferences.Add($analyzerFilePath.FullName)
46+
}
47+
}
48+
}
49+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
param($installPath, $toolsPath, $package, $project)
2+
3+
$analyzersPaths = Join-Path (Join-Path (Split-Path -Path $toolsPath -Parent) "analyzers" ) * -Resolve
4+
5+
foreach($analyzersPath in $analyzersPaths)
6+
{
7+
# Uninstall the language agnostic analyzers.
8+
if (Test-Path $analyzersPath)
9+
{
10+
foreach ($analyzerFilePath in Get-ChildItem $analyzersPath -Filter *.dll)
11+
{
12+
if($project.Object.AnalyzerReferences)
13+
{
14+
$project.Object.AnalyzerReferences.Remove($analyzerFilePath.FullName)
15+
}
16+
}
17+
}
18+
}
19+
20+
# $project.Type gives the language name like (C# or VB.NET)
21+
$languageFolder = ""
22+
if($project.Type -eq "C#")
23+
{
24+
$languageFolder = "cs"
25+
}
26+
if($project.Type -eq "VB.NET")
27+
{
28+
$languageFolder = "vb"
29+
}
30+
if($languageFolder -eq "")
31+
{
32+
return
33+
}
34+
35+
foreach($analyzersPath in $analyzersPaths)
36+
{
37+
# Uninstall language specific analyzers.
38+
$languageAnalyzersPath = join-path $analyzersPath $languageFolder
39+
if (Test-Path $languageAnalyzersPath)
40+
{
41+
foreach ($analyzerFilePath in Get-ChildItem $languageAnalyzersPath -Filter *.dll)
42+
{
43+
if($project.Object.AnalyzerReferences)
44+
{
45+
try
46+
{
47+
$project.Object.AnalyzerReferences.Remove($analyzerFilePath.FullName)
48+
}
49+
catch
50+
{
51+
52+
}
53+
}
54+
}
55+
}
56+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<configuration>
2+
<configSections>
3+
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
4+
</configSections>
5+
</configuration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<configuration>
2+
<configSections>
3+
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
4+
</configSections>
5+
</configuration>
Binary file not shown.

0 commit comments

Comments
 (0)