Skip to content

Commit

Permalink
ignore tests for now. Update for better packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
gregsdennis committed Sep 23, 2024
1 parent 7e49150 commit 61978fa
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Graeae.AspNet.Analyzer/Diagnostics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Graeae.AspNet.Analyzer;

public static class Diagnostics
internal static class Diagnostics
{
public static Diagnostic OperationalError(string message) =>
Diagnostic.Create(new("GR0001", "Operational error", message, "Operation", DiagnosticSeverity.Error, true), Location.None, DiagnosticSeverity.Error);
Expand Down
40 changes: 38 additions & 2 deletions Graeae.AspNet.Analyzer/Graeae.AspNet.Analyzer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,49 @@
<DevelopmentDependency>true</DevelopmentDependency>
<IsRoslynComponent>true</IsRoslynComponent>

<Authors>Greg Dennis</Authors>
<Description>Analyzer for Graeae.AspNet</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/gregsdennis/Graeae</PackageProjectUrl>
<PackageIcon>openapi.png</PackageIcon>
<RepositoryUrl>https://github.com/gregsdennis/Graeae</RepositoryUrl>
<PackageTags>openapi json schema aspnet webapi minimalapi api roslyn analyzer</PackageTags>
<PackageReleaseNotes>Release notes can be found at https://github.com/gregsdennis/Graeae</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<DocumentationFile>Graeae.AspNet.xml</DocumentationFile>
<Version>0.1.0-preview1</Version>
<FileVersion>0.1.0</FileVersion>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<IncludeSymbols>false</IncludeSymbols>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../openapi.snk</AssemblyOriginatorKeyFile>
<PackageReadmeFile>README.md</PackageReadmeFile>

<PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes>
</PropertyGroup>

<ItemGroup>
<!--<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>Graeae.AspNet.Tests</_Parameter1>
<_Parameter1>Graeae.AspNet.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100d111b5991feb360746cf4535b9ec3196825996680b6599cf10748f90a58ec820431f81d21eff5229a3fd7c3e42e46a20584ac413ebe39b4c05905fd47b877bffed36bff23ad4ad14aad3deed8f24ed40a1371daad79a41172b2cdf0db4b664198f38f3a19419457131f8ee4558e628b5c986bb574d4e151b650eae6aa1f5ccbf</_Parameter1>
</AssemblyAttribute>
</ItemGroup>-->

<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="RELEASE_NOTES.md" Link="RELEASE_NOTES.md" />
<None Include="..\Resources\openapi.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 3 additions & 0 deletions Graeae.AspNet.Tests/Graeae.AspNet.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
<IsPackable>false</IsPackable>

<LangVersion>latest</LangVersion>

<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../openapi.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions Graeae.AspNet/Graeae.AspNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<PackageReleaseNotes>Release notes can be found at https://github.com/gregsdennis/Graeae</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<DocumentationFile>Graeae.AspNet.xml</DocumentationFile>
<Version>0.1.0</Version>
<FileVersion>0.1.0.0</FileVersion>
<Version>0.1.0-preview1</Version>
<FileVersion>0.1.0</FileVersion>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand All @@ -38,6 +38,7 @@
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="RELEASE_NOTES.md" Link="RELEASE_NOTES.md" />
<None Include="..\Resources\openapi.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
Expand Down

0 comments on commit 61978fa

Please sign in to comment.