-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move more over to default.props and fix the csproj files
- Loading branch information
Showing
3 changed files
with
24 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="../../../default.props"/> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Dolittle.Contracts</AssemblyName> | ||
<DolittleProtoProject>../../../Source/Fundamentals</DolittleProtoProject> | ||
<DolittleProtoRoot>../../../Source</DolittleProtoRoot> | ||
<DolittleProtoKeepFiles>VersionInfo.cs</DolittleProtoKeepFiles> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Dolittle.Common" Version="2.*" PrivateAssets="All"/> | ||
<PackageReference Include="Dolittle.Protobuf.MSBuild" Version="4.0.1"/> | ||
<Protobuf Include="../../../Source/Fundamentals/**/*.proto" | ||
ProtoRoot="../../../Source" | ||
OutputDir="%(RecursiveDir)" | ||
GrpcServices="None" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="../../../default.props"/> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Dolittle.Runtime.Contracts</AssemblyName> | ||
<DolittleProtoProject>../../../Source/Runtime</DolittleProtoProject> | ||
<DolittleProtoRoot>../../../Source</DolittleProtoRoot> | ||
<DolittleProtoKeepFiles>VersionInfo.cs</DolittleProtoKeepFiles> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="../Fundamentals/Fundamentals.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Dolittle.Common" Version="2.*" PrivateAssets="All"/> | ||
<PackageReference Include="Dolittle.Protobuf.MSBuild" Version="4.0.1"/> | ||
<Protobuf Include="../../../Source/Runtime/**/*.proto" | ||
ProtoRoot="../../../Source" | ||
OutputDir="%(RecursiveDir)" | ||
GrpcServices="Both" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters