|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 5 | + </PropertyGroup> |
| 6 | + <PropertyGroup Label="Packaging"> |
| 7 | + <PackageProjectUrl>https://github.com/dadhi/CSharpTypePrinter</PackageProjectUrl> |
| 8 | + <PackageLicense>https://github.com/dadhi/CSharpTypePrinter/blob/master/LICENSE</PackageLicense> |
| 9 | + <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
| 10 | + <RepositoryUrl>https://github.com/dadhi/CSharpTypePrinter</RepositoryUrl> |
| 11 | + <RepositoryType>git</RepositoryType> |
| 12 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 13 | + <!-- <PackageIcon></PackageIcon> --> |
| 14 | + <VersionPrefix>1.0.0</VersionPrefix> |
| 15 | + <VersionSuffix></VersionSuffix> |
| 16 | + <Product>CSharpTypePrinter</Product> |
| 17 | + <PackageId>$(Product)</PackageId> |
| 18 | + <Title>$(Product)</Title> |
| 19 | + <Description> |
| 20 | + <![CDATA[ |
| 21 | + |
| 22 | + Prints System.Type object as a valid C# literal, e.g. typeof(A<X>.B<Y>.C) as a "A<X>.B<Y>.C" |
| 23 | + |
| 24 | + ]]> |
| 25 | + </Description> |
| 26 | + <PackageTags>pretty-print;csharp;reflection;code-generation;dotnet;type;to-string;automation;happiness;DryIoc;FastExpressionCompiler;ImTools</PackageTags> |
| 27 | + <PackageReleaseNotes> |
| 28 | + <![CDATA[ |
2 | 29 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
5 | | - </PropertyGroup> |
| 30 | + ## v1.0.0 - First major version |
6 | 31 |
|
| 32 | + ]]> |
| 33 | + </PackageReleaseNotes> |
| 34 | + <AssemblyName>$(Product)</AssemblyName> |
| 35 | + <AssemblyTitle>$(Product) $(TargetFramework)</AssemblyTitle> |
| 36 | + <AssemblyVersion>$(VersionPrefix)</AssemblyVersion> |
| 37 | + </PropertyGroup> |
| 38 | + <PropertyGroup Label="Signing"> |
| 39 | + <SignAssembly>true</SignAssembly> |
| 40 | + <AssemblyOriginatorKeyFile>..\..\CSharpTypePrinter.snk</AssemblyOriginatorKeyFile> |
| 41 | + </PropertyGroup> |
| 42 | + <ItemGroup> |
| 43 | + <None Include="..\..\LICENSE" Pack="true" PackagePath="LICENSE" Visible="false"/> |
| 44 | + <None Include="..\..\CSharpTypePrinter.snk" Pack="true" PackagePath="CSharpTypePrinter.snk" Visible="false"/> |
| 45 | + </ItemGroup> |
| 46 | + |
| 47 | + <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
| 48 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 49 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 50 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 51 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 52 | + <PackageOutputPath>..\..\.dist</PackageOutputPath> |
| 53 | + <DebugType>embedded</DebugType> |
| 54 | + <DebugSymbols>true</DebugSymbols> |
| 55 | + <IncludeSymbols>false</IncludeSymbols> |
| 56 | + </PropertyGroup> |
| 57 | + |
| 58 | + <ItemGroup> |
| 59 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/> |
| 60 | + </ItemGroup> |
7 | 61 | </Project> |
0 commit comments