-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzure Scheduler.csproj
27 lines (27 loc) · 1.19 KB
/
Azure Scheduler.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
<RootNamespace>AzureScheduler</RootNamespace>
<Authors>Marnix van Valen</Authors>
<Company>Alanta</Company>
<Description>Save pennies in the cloud by shutting down VMs and Azure Container Instances during off hours.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/alanta/azure_scheduler</PackageProjectUrl>
<RepositoryUrl>https://github.com/alanta/azure_scheduler</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Management.Fluent" Version="1.26.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.29" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.sample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>