|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
5 | | - <LangVersion>13</LangVersion> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <NoWarn>$(NoWarn);CS1591</NoWarn> |
8 | | - <IsRoslynComponent>true</IsRoslynComponent> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 5 | + <LangVersion>13</LangVersion> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <NoWarn>$(NoWarn);CS1591</NoWarn> |
| 8 | + <IsRoslynComponent>true</IsRoslynComponent> |
9 | 9 |
|
10 | | - <!-- does not need runtime self --> |
11 | | - <IncludeBuildOutput>false</IncludeBuildOutput> |
12 | | - <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> |
13 | | - <IncludeSymbols>false</IncludeSymbols> |
14 | | - <DevelopmentDependency>true</DevelopmentDependency> |
| 10 | + <!-- does not need runtime self --> |
| 11 | + <IncludeBuildOutput>false</IncludeBuildOutput> |
| 12 | + <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> |
| 13 | + <IncludeSymbols>false</IncludeSymbols> |
| 14 | + <DevelopmentDependency>true</DevelopmentDependency> |
15 | 15 |
|
16 | | - <!-- NuGet --> |
17 | | - <PackageId>UnitGenerator</PackageId> |
18 | | - <Description>C# Source Generator to create value-object, inspired by units of measure.</Description> |
19 | | - <IsPackable>true</IsPackable> |
20 | | - </PropertyGroup> |
| 16 | + <!-- NuGet --> |
| 17 | + <IsPackable>true</IsPackable> |
| 18 | + <PackageId>UnitGenerator</PackageId> |
| 19 | + <Description>C# Source Generator to create value-object, inspired by units of measure.</Description> |
| 20 | + <IsPackable>true</IsPackable> |
| 21 | + </PropertyGroup> |
21 | 22 |
|
22 | | - <ItemGroup> |
23 | | - <!-- Create nuget package as analyzer --> |
24 | | - <None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> |
25 | | - </ItemGroup> |
| 23 | + <ItemGroup> |
| 24 | + <!-- Create nuget package as analyzer --> |
| 25 | + <None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> |
| 26 | + </ItemGroup> |
26 | 27 |
|
27 | | - <ItemGroup> |
28 | | - <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3.0" PrivateAssets="all" /> |
29 | | - </ItemGroup> |
| 28 | + <ItemGroup> |
| 29 | + <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3.0" PrivateAssets="all" /> |
| 30 | + </ItemGroup> |
30 | 31 |
|
31 | | - <ItemGroup> |
32 | | - <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" /> |
33 | | - </ItemGroup> |
| 32 | + <ItemGroup> |
| 33 | + <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" /> |
| 34 | + </ItemGroup> |
34 | 35 |
|
35 | 36 | </Project> |
0 commit comments