Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build-debug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ jobs:
with:
dotnet-version: |
9.0.x
- run: dotnet build -c Debug
- run: dotnet test -c Debug --no-build
- run: dotnet build -c Release
- run: dotnet test -c Release --no-build
- run: dotnet pack -c Release --no-build -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -o $GITHUB_WORKSPACE/artifacts
24 changes: 24 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>13</LangVersion>

<!-- NuGet Package Information -->
<PackageVersion>$(Version)</PackageVersion>
<Company>Cysharp</Company>
<Authors>Cysharp</Authors>
<Copyright>© Cysharp, Inc.</Copyright>
<PackageTags>database, embedded, inmemory, unity</PackageTags>
<PackageProjectUrl>https://github.com/Cysharp/MasterMemory</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Icon.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)Icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
Binary file added Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 1 addition & 8 deletions src/MasterMemory.Annotations/MasterMemory.Annotations.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,11 @@
<Company>Cysharp</Company>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1701;1702;1705;1591</NoWarn>
<RootNamespace>MasterMemory</RootNamespace>

<!-- NuGet -->
<PackageId>MasterMemory.Annotations</PackageId>
<PackageVersion>$(Version)</PackageVersion>
<Authors>Cysharp</Authors>
<Copyright>Cysharp</Copyright>
<Description>Attributes of MasterMemory.</Description>
<PackageProjectUrl>https://github.com/Cysharp/MasterMemory</PackageProjectUrl>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>database, embedded, inmemory, unity</PackageTags>
<RootNamespace>MasterMemory</RootNamespace>
<IsPackable>true</IsPackable>
</PropertyGroup>

Expand Down
71 changes: 0 additions & 71 deletions src/MasterMemory.SourceGenerator/MasterMemory.GeneratorCore.csproj

This file was deleted.

7 changes: 0 additions & 7 deletions src/MasterMemory/MasterMemory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,7 @@

<!-- NuGet -->
<PackageId>MasterMemory</PackageId>
<PackageVersion>$(Version)</PackageVersion>
<Authors>Cysharp</Authors>
<Copyright>Cysharp</Copyright>
<Description>Embedded Typed Readonly In-Memory Document Database for .NET Core and Unity.</Description>
<PackageProjectUrl>https://github.com/Cysharp/MasterMemory</PackageProjectUrl>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>database, embedded, inmemory, unity</PackageTags>
<IsPackable>true</IsPackable>

<!-- SourceGenerator Packaging configs... -->
Expand Down