-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathBytecodeApi.Rest.csproj
More file actions
40 lines (40 loc) · 1.62 KB
/
BytecodeApi.Rest.csproj
File metadata and controls
40 lines (40 loc) · 1.62 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<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.Rest</Product>
<Title>BytecodeApi.Rest</Title>
<Description>Fluent REST client.</Description>
<Company>bytecode77</Company>
<Authors>Martin Fischer</Authors>
<Copyright>© bytecode77, 2026.</Copyright>
</PropertyGroup>
<PropertyGroup>
<PackageId>BytecodeApi.Rest</PackageId>
<PackageTags>rest client fluent base class</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>
<ProjectReference Include="..\BytecodeApi\BytecodeApi.csproj" />
</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>