2021-07-06 22:40:53 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
<Authors>Pulumi Corp.</Authors>
|
|
|
|
<Company>Pulumi Corp.</Company>
|
|
|
|
<Description></Description>
|
|
|
|
<PackageLicenseExpression></PackageLicenseExpression>
|
|
|
|
<PackageProjectUrl></PackageProjectUrl>
|
|
|
|
<RepositoryUrl></RepositoryUrl>
|
|
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
|
|
|
2023-03-02 16:34:28 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-07-06 22:40:53 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
|
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<EmbeddedResource Include="version.txt" />
|
|
|
|
<None Include="version.txt" Pack="True" PackagePath="content" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-03-31 22:26:39 +00:00
|
|
|
<ItemGroup>
|
2021-12-15 18:41:44 +00:00
|
|
|
<EmbeddedResource Include="pulumi-plugin.json" />
|
|
|
|
<None Include="pulumi-plugin.json" Pack="True" PackagePath="content" />
|
2021-12-02 20:47:33 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-07-06 22:40:53 +00:00
|
|
|
<ItemGroup>
|
2022-12-13 10:51:55 +00:00
|
|
|
<PackageReference Include="Pulumi" Version="3.23" />
|
2021-10-18 22:18:15 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-07-06 22:40:53 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Include="logo.png">
|
|
|
|
<Pack>True</Pack>
|
|
|
|
<PackagePath></PackagePath>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|