-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathBytecodeApi.csproj
More file actions
41 lines (41 loc) · 1.67 KB
/
BytecodeApi.csproj
File metadata and controls
41 lines (41 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">True</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<Version>5.0.1</Version>
<AssemblyVersion>5.0.1</AssemblyVersion>
<FileVersion>5.0.1</FileVersion>
</PropertyGroup>
<PropertyGroup>
<Product>BytecodeApi</Product>
<Title>BytecodeApi</Title>
<Description>Framework for C# development.</Description>
<Company>bytecode77</Company>
<Authors>Martin Fischer</Authors>
<Copyright>© bytecode77, 2026.</Copyright>
</PropertyGroup>
<PropertyGroup>
<PackageId>BytecodeApi</PackageId>
<PackageTags>library framework extensions helper</PackageTags>
<PackageProjectUrl>https://bytecode77.com/bytecode-api</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/bytecode77/bytecode-api</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>.nuget\README.md</PackageReadmeFile>
<PackageIcon>.nuget\PackageIcon.png</PackageIcon>
<PackageOutputPath>../$Build</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="10.0.1" />
</ItemGroup>
<ItemGroup>
<None Include=".nuget\README.md" Pack="true" PackagePath=".nuget\" />
<None Include="..\.nuget\PackageIcon.png" Link=".nuget\PackageIcon.png" Pack="true" PackagePath=".nuget\" />
</ItemGroup>
</Project>