mirror of https://github.com/pulumi/pulumi.git
36 lines
1019 B
XML
36 lines
1019 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Authors>Pulumi</Authors>
|
|
<Company>Pulumi Corp.</Company>
|
|
<Description>F#-specific helpers for the Pulumi .NET SDK.</Description>
|
|
<PackageProjectUrl>https://www.pulumi.com</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/pulumi/pulumi</RepositoryUrl>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
<PackageIcon>pulumi_logo_64x64.png</PackageIcon>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoWarn>NU5105</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Library.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Pulumi\Pulumi.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\pulumi_logo_64x64.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|