File tree Expand file tree Collapse file tree 5 files changed +29
-18
lines changed
Expand file tree Collapse file tree 5 files changed +29
-18
lines changed Original file line number Diff line number Diff line change 1717 steps :
1818 - uses : Cysharp/Actions/.github/actions/checkout@main
1919 - uses : Cysharp/Actions/.github/actions/setup-dotnet@main
20- - run : dotnet build -c Debug
20+ - run : dotnet build -c Release
21+ - run : dotnet pack -c Release --no-build -p:IncludeSymbols=true -o $GITHUB_WORKSPACE/artifacts
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <Project ToolsVersion =" 15.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3+ <PropertyGroup >
4+ <LangVersion >13</LangVersion >
5+
6+ <!-- NuGet Package Information -->
7+ <PackageVersion >$(Version)</PackageVersion >
8+ <Company >Cysharp</Company >
9+ <Authors >Cysharp</Authors >
10+ <Copyright >© Cysharp, Inc.</Copyright >
11+ <PackageTags >sourcegenerator;valueobject</PackageTags >
12+ <PackageProjectUrl >https://github.com/Cysharp/UnitGenerator</PackageProjectUrl >
13+ <PackageReadmeFile >README.md</PackageReadmeFile >
14+ <RepositoryUrl >$(PackageProjectUrl)</RepositoryUrl >
15+ <RepositoryType >git</RepositoryType >
16+ <PackageLicenseExpression >MIT</PackageLicenseExpression >
17+ <PackageIcon >Icon.png</PackageIcon >
18+ </PropertyGroup >
19+
20+ <ItemGroup >
21+ <None Include =" $(MSBuildThisFileDirectory)README.md" Pack =" true" PackagePath =" \" />
22+ <None Include =" $(MSBuildThisFileDirectory)Icon.png" Pack =" true" PackagePath =" \" />
23+ </ItemGroup >
24+ </Project >
File renamed without changes.
Original file line number Diff line number Diff line change 55 <TargetFramework >net7.0</TargetFramework >
66 <ImplicitUsings >enable</ImplicitUsings >
77 <Nullable >enable</Nullable >
8+ <IsPackable >false</IsPackable >
89 </PropertyGroup >
910
1011 <ItemGroup >
Original file line number Diff line number Diff line change 1010 <!-- does not need runtime self -->
1111 <IncludeBuildOutput >false</IncludeBuildOutput >
1212 <SuppressDependenciesWhenPacking >true</SuppressDependenciesWhenPacking >
13- <IncludeSymbols >false</IncludeSymbols >
14- <DevelopmentDependency >true</DevelopmentDependency >
13+ <IncludeSymbols >false</IncludeSymbols >
14+ <DevelopmentDependency >true</DevelopmentDependency >
1515
1616 <!-- NuGet -->
1717 <PackageId >UnitGenerator</PackageId >
1818 <Description >C# Source Generator to create value-object, inspired by units of measure.</Description >
19-
20- <PackageVersion >$(Version)</PackageVersion >
21- <Company >Cysharp</Company >
22- <Authors >Cysharp</Authors >
23- <Copyright >© Cysharp, Inc.</Copyright >
24- <PackageTags >sourcegenerator;valueobject</PackageTags >
25- <PackageProjectUrl >https://github.com/Cysharp/UnitGenerator</PackageProjectUrl >
26- <RepositoryUrl >$(PackageProjectUrl)</RepositoryUrl >
27- <RepositoryType >git</RepositoryType >
28- <PackageLicenseExpression >MIT</PackageLicenseExpression >
29- <PackageIcon >Icon.png</PackageIcon >
3019 <IsPackable >true</IsPackable >
3120 </PropertyGroup >
3221
3928 <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.3.0" PrivateAssets =" all" />
4029 </ItemGroup >
4130
42- <ItemGroup >
43- <None Include =" Icon.png" Pack =" true" PackagePath =" /" />
44- </ItemGroup >
45-
4631 <ItemGroup >
4732 <Service Include =" {508349b6-6b84-4df5-91f0-309beebad82d}" />
4833 </ItemGroup >
You can’t perform that action at this time.
0 commit comments