-
Notifications
You must be signed in to change notification settings - Fork 53
Nugetize #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Nugetize #26
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ce2fb51
update configs for beta36 of core tools and add windows if check
71c3317
add a comment to explain why execution policy is needed
70b7a47
Merge branch 'dev' of github.com:Azure/azure-functions-powershell-wor…
746fe76
nugetize the worker
fd4e340
Assert.Equal to Assert.Single
TylerLeonhardt 79cc631
Added PackageCopyToOutput
TylerLeonhardt ac0655f
Add new line at end
daxian-dbw 72a9e7c
added Product
TylerLeonhardt 4146d28
Merge branch 'nugetize' of github.com:Azure/azure-functions-powershel…
TylerLeonhardt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!-- | ||
Copyright (c) Microsoft. All rights reserved. | ||
Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
--> | ||
<Project> | ||
<PropertyGroup> | ||
<Version>0.1.0</Version> | ||
<PackageId>Azure.Functions.PowerShell.Worker</PackageId> | ||
<Authors>Microsoft</Authors> | ||
<Owners>Microsoft</Owners> | ||
<Company>Microsoft Corporation</Company> | ||
<Description>The Azure Function PowerShell Language Worker allows users to write Azure Function Apps using PowerShell. It leverages the PowerShell Core SDK.</Description> | ||
<Title>Azure Function PowerShell Language Worker</Title> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageLicenseUrl>https://github.com/Azure/azure-functions-powershell-worker/blob/dev/LICENSE</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/Azure/azure-functions-powershell-worker</PackageProjectUrl> | ||
<PackageIconUrl>https://github.com/PowerShell/PowerShell/blob/master/assets/Powershell_64.png</PackageIconUrl> | ||
<PackageTags>azure,functions,powershell,worker</PackageTags> | ||
<PackageReleaseNotes> | ||
# 0.1.0 | ||
|
||
Initial Release | ||
</PackageReleaseNotes> | ||
</PropertyGroup> | ||
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
<!-- | ||
Copyright (c) Microsoft. All rights reserved. | ||
Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
--> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="Azure.Functions.PowerShell.Worker.Package.props" /> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<Product>Azure Function PowerShell Language Worker</Product> | ||
<Company>Microsoft Corporation</Company> | ||
<Copyright>(c) Microsoft Corporation. All rights reserved.</Copyright> | ||
|
||
<LangVersion>Latest</LangVersion> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<IncludeBuildOutput>true</IncludeBuildOutput> | ||
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
</PropertyGroup> | ||
|
@@ -24,13 +27,13 @@ | |
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="worker.config.json"> | ||
<Content Include="worker.config.json" PackageCopyToOutput="true"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Include="Modules\**"> | ||
</Content> | ||
<Content Include="Modules\**" PackageCopyToOutput="true"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yay!! 💯 |
||
<Link>Modules\%(RecursiveDir)\%(FileName)%(Extension)</Link> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</Content> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall we do the renaming (from
Azure.Functions.PowerShell.Worker
toMicrosoft.Azure.Functions.PowerShellWorker
) in this repo before publishing NuGet package?Not necessarily be done in this PR. I think it's better to do it after merging this PR.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I agree. We should see what the other language workers are called and try to be consistent.