-
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
Nugetize #26
Changes from 6 commits
ce2fb51
71c3317
70b7a47
746fe76
fd4e340
79cc631
ac0655f
72a9e7c
4146d28
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
<!-- | ||
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> | ||
<Product>Azure Function PowerShell Language Worker</Product> | ||
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.
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. added. |
||
<Company>Microsoft Corporation</Company> | ||
<Copyright>(c) Microsoft Corporation. All rights reserved.</Copyright> | ||
|
||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<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 +26,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> |
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.