Skip to content

Commit

Permalink
fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
bertt committed Jul 22, 2024
1 parent 1c2afb6 commit 162df4f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
WORKDIR /src
COPY . .
RUN dotnet build "src/i3dm.export.csproj" -c Release
RUN dotnet publish "src/i3dm.export.csproj" -c Release -o /app
RUN dotnet build "i3dm.export.csproj" -c Release
RUN dotnet publish "i3dm.export.csproj" -c Release -o /app

FROM mcr.microsoft.com/dotnet/runtime:8.0
WORKDIR /app
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ To Visualize in CesiumJS, add references to:

## History

2024-07-22: release 2.8.1: fix release

2024-07-22: release 2.8.0: to .NET 8.0

2024-06-20: release 2.7.4: fix for composite tiles when using GPU instancing
Expand Down
Binary file removed i3dm.export-win-x64.zip
Binary file not shown.
11 changes: 3 additions & 8 deletions src/i3dm.export.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<TargetFramework>net8.0</TargetFramework>
<ToolCommandName>i3dm.export</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Version>2.8.0</Version>
<AssemblyVersion>2.8.0</AssemblyVersion>
<FileVersion>2.8.0</FileVersion>
<Version>2.8.1</Version>
<AssemblyVersion>2.8.1</AssemblyVersion>
<FileVersion>2.8.1</FileVersion>
<PackageProjectUrl>https://github.com/geodan/i3dm.export</PackageProjectUrl>
<RepositoryUrl>https://github.com/geodan/i3dm.export</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand All @@ -18,7 +18,6 @@
<Authors>Bert Temme</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -35,8 +34,4 @@
<PackageReference Include="Wkx" Version="0.5.1" />
</ItemGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>

0 comments on commit 162df4f

Please sign in to comment.