Skip to content

Commit

Permalink
Fix missing Symbol package #139
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Nov 15, 2023
1 parent 2f5fd1c commit abc7ddb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
20 changes: 4 additions & 16 deletions Analogy.Interfaces/Analogy.Interfaces.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,31 @@

<PropertyGroup>
<TargetFrameworks>net8.0-windows;net7.0-windows;net6.0-windows;net48;net471</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Description>Analogy.Interfaces assembly for creating custom data providers for Analogy Log Viewer</Description>
<Description>Interfaces assembly for creating custom data providers for Analogy Log Viewer</Description>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageProjectUrl>https://github.com/Analogy-LogViewer/Analogy.Interfaces</PackageProjectUrl>
<AssemblyName>Analogy.Interfaces</AssemblyName>
<RootNamespace>Analogy.Interfaces</RootNamespace>
<PackageId>Analogy.LogViewer.Interfaces</PackageId>
<VersionPrefix>6.0.0</VersionPrefix>
<VersionPrefix>6.0.0.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Lior Banai</Authors>
<Product>Analogy.LogViewer.Interfaces</Product>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Lior Banai @ 2018-2024</Copyright>
<PackageIcon>icon.png</PackageIcon>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>

<PackageIconUrl />
<RepositoryUrl>https://github.com/Analogy-LogViewer/Analogy.Interfaces</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Company>Analogy.LogViewer</Company>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
</PropertyGroup>
<ItemGroup>
<None Include="..\icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="System.Resources.Extensions" Version="8.0.0" />
</ItemGroup>
</Project>
</Project>
18 changes: 18 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
<Project>
<PropertyGroup>
<UseWindowsForms>true</UseWindowsForms>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<RepositoryType>git</RepositoryType>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Debug'))">
<DefineConstants>$(DefineContants);DEBUG</DefineConstants>
<Optimize>false</Optimize>
Expand Down

0 comments on commit abc7ddb

Please sign in to comment.