Skip to content
Closed
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
102 changes: 51 additions & 51 deletions Docxodus/Docxodus.csproj
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>latest</LangVersion>

<!-- Enable packaging for NuGet -->
<IsPackable>true</IsPackable>

<!-- NuGet Package Metadata -->
<PackageId>Docxodus</PackageId>
<Version>1.0.0</Version>
<Authors>OpenXmlPowerTools Authors, JSv4</Authors>
<Description>A powerful library for manipulating Open XML documents (DOCX, XLSX, PPTX). Fork of OpenXmlPowerTools upgraded to .NET 8.0.</Description>
<PackageProjectUrl>https://github.com/JSv4/Docxodus</PackageProjectUrl>
<RepositoryUrl>https://github.com/JSv4/Docxodus</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>openxml;docx;word;xlsx;excel;pptx;powerpoint;document;compare;merge</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>

<!-- Disable TreatWarningsAsErrors for legacy code - too many existing warnings -->
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS8073;CA2200;CS8632</NoWarn>

<!-- ReadyToRun: Pre-compile to native code during publish to eliminate JIT warmup -->
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>

<!-- Define WASM_BUILD constant when building for WASM -->
<PropertyGroup Condition="'$(WASM_BUILD)' == 'true'">
<DefineConstants>$(DefineConstants);WASM_BUILD</DefineConstants>
</PropertyGroup>

<!-- Core dependencies (always included) -->
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
</ItemGroup>

<!-- SkiaSharp dependencies (only for non-WASM builds) -->
<ItemGroup Condition="'$(WASM_BUILD)' != 'true'">
<PackageReference Include="SkiaSharp" Version="2.88.9" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.9" />
</ItemGroup>

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

</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>latest</LangVersion>
<!-- Enable packaging for NuGet -->
<IsPackable>true</IsPackable>
<!-- NuGet Package Metadata -->
<PackageId>Docxodus</PackageId>
<Version>1.0.0</Version>
<Authors>OpenXmlPowerTools Authors, JSv4</Authors>
<Description>A powerful library for manipulating Open XML documents (DOCX, XLSX, PPTX). Fork of OpenXmlPowerTools upgraded to .NET 8.0.</Description>
<PackageProjectUrl>https://github.com/JSv4/Docxodus</PackageProjectUrl>
<RepositoryUrl>https://github.com/JSv4/Docxodus</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>openxml;docx;word;xlsx;excel;pptx;powerpoint;document;compare;merge</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Disable TreatWarningsAsErrors for legacy code - too many existing warnings -->
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS8073;CA2200;CS8632</NoWarn>
<!-- ReadyToRun: Pre-compile to native code during publish to eliminate JIT warmup -->
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>
<!-- Define WASM_BUILD constant when building for WASM -->
<PropertyGroup Condition="'$(WASM_BUILD)' == 'true'">
<DefineConstants>$(DefineConstants);WASM_BUILD</DefineConstants>
</PropertyGroup>
<!-- Core dependencies (always included) -->
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
</ItemGroup>
<!-- SkiaSharp dependencies (only for non-WASM builds) -->
<ItemGroup Condition="'$(WASM_BUILD)' != 'true'">
<PackageReference Include="SkiaSharp" Version="2.88.9" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="3.119.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>
Loading