Skip to content

Commit

Permalink
Fix product/funding properties so analyzer prefix is shorter too
Browse files Browse the repository at this point in the history
Will now be DTS
  • Loading branch information
kzu committed Jul 9, 2024
1 parent 2c74a18 commit 682f025
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 27 deletions.
1 change: 1 addition & 0 deletions src/Directory.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<RestoreSources>https://api.nuget.org/v3/index.json;https://pkg.kzu.io/index.json;$(RestoreSources)</RestoreSources>

<PackageProjectUrl>https://clarius.org/TableStorage</PackageProjectUrl>
<Product>Devlooped.TableStorage</Product>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<PackFolder>analyzers/dotnet/roslyn4.0</PackFolder>
<SignAssembly>false</SignAssembly>
<CustomAfterMicrosoftCSharpTargets>$(MSBuildThisFileDirectory)..\SponsorLink\SponsorLink.Analyzer.targets</CustomAfterMicrosoftCSharpTargets>
<FundingPackageId>Devlooped.TableStorage</FundingPackageId>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>Devlooped.TableStorage.MessagePack.Source</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>true</IsPackable>
<PackBuildOutput>false</PackBuildOutput>
<PackCompile>true</PackCompile>
<Description>A source-only MessagePack binary serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NuGetizer" Version="1.1.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
<PackageReference Include="MessagePack" Version="2.5.171" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\TableStorage.Source\TableStorage.Source.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\TableStorage.MessagePack\**\*.cs" Exclude="..\TableStorage.MessagePack\Visibility.cs;..\TableStorage.MessagePack\obj\**\*.cs;" />
<None Update="Devlooped.TableStorage.MessagePack.Source.targets" PackFolder="build" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>Devlooped.TableStorage.MessagePack.Source</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>true</IsPackable>
<PackBuildOutput>false</PackBuildOutput>
<PackCompile>true</PackCompile>
<Description>A source-only MessagePack binary serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NuGetizer" Version="1.1.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
<PackageReference Include="MessagePack" Version="2.5.171" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\TableStorage.Source\TableStorage.Source.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\TableStorage.MessagePack\**\*.cs" Exclude="..\TableStorage.MessagePack\Visibility.cs;..\TableStorage.MessagePack\obj\**\*.cs;" />
<None Update="Devlooped.TableStorage.MessagePack.Source.targets" PackFolder="build" />
</ItemGroup>

</Project>

0 comments on commit 682f025

Please sign in to comment.