Skip to content

Commit

Permalink
simplified reproducible example
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliohome authored Mar 25, 2024
1 parent 39c04a8 commit dd9a3c3
Show file tree
Hide file tree
Showing 4 changed files with 119,592 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Generated.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.0.2" />
<PackageReference Include="DocumentFormat.OpenXml.Framework" Version="3.0.2" />
</ItemGroup>

</Project>
12 changes: 12 additions & 0 deletions Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace Generated;
using GeneratedCode;

class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
GeneratedClass generator = new GeneratedClass();
generator.CreatePackage("output.xlsx");
}
}
Loading

0 comments on commit dd9a3c3

Please sign in to comment.