This repository was archived by the owner on Feb 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetcorext.Auth.Protobufs.csproj
More file actions
46 lines (41 loc) · 2.33 KB
/
Netcorext.Auth.Protobufs.csproj
File metadata and controls
46 lines (41 loc) · 2.33 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
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<VersionMajor>1</VersionMajor>
<VersionMinor>0</VersionMinor>
<VersionPatch>0</VersionPatch>
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<FileVersion>$(VersionMajor).$([System.DateTime]::UtcNow.ToString(yy)).$([System.DateTime]::UtcNow.ToString(MMdd)).$([System.DateTime]::UtcNow.ToString(HHmm))</FileVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);IncludeProjectReferences</TargetsForTfmSpecificBuildOutput>
<Authors>NETCOREXT</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/NETCOREXT/Netcorext.Auth.Protobufs</PackageProjectUrl>
<RepositoryUrl>https://github.com/NETCOREXT/Netcorext.Auth.Protobufs.git</RepositoryUrl>
<Description />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.20" />
<PackageReference Include="Grpc.Core" Version="2.46" />
<PackageReference Include="Grpc.Tools" Version="2.46">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Protobuf OutputDir="$(Protobuf_OutputPath)" GrpcServices="None" ProtoRoot="Protos" Link="Protos/Netcorext.Contracts.Protobufs/Result/*.proto" Include="Protos/Netcorext.Contracts.Protobufs/Result/*.proto" />
<Protobuf OutputDir="$(Protobuf_OutputPath)" GrpcServices="Both" ProtoRoot="Protos" Link="Protos/Enums/*.proto" Include="Protos/Enums/*.proto" />
<Protobuf OutputDir="$(Protobuf_OutputPath)" GrpcServices="Both" ProtoRoot="Protos" Link="Protos/*.proto" Include="Protos/*.proto" />
</ItemGroup>
<Target Name="IncludeProjectReferences" DependsOnTargets="ResolveReferences">
<ItemGroup>
<IncludeBuildOutput />
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>
</Project>