Moving protos to neutral place to be shared by projects

This commit is contained in:
Brandon Watson 2021-03-05 23:51:24 -05:00
parent d307a049f1
commit 4ee5656358
6 changed files with 19 additions and 12 deletions

View File

@ -5,7 +5,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Protobuf Include="Src\Protos\signal.proto" GrpcServices="Server" /> <Protobuf Include="..\..\aurora-proto\Proto\signal.proto" GrpcServices="Server" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@ -2,7 +2,7 @@ syntax = "proto3";
package Aurora.Proto.Party; package Aurora.Proto.Party;
import "Proto/general.proto"; import "general.proto";
import "google/protobuf/timestamp.proto"; import "google/protobuf/timestamp.proto";
import "google/protobuf/field_mask.proto"; import "google/protobuf/field_mask.proto";

View File

@ -60,8 +60,8 @@
</Compile> </Compile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Protobuf Include="Proto\general.proto" /> <Protobuf Include="..\..\aurora-proto\proto\general.proto" />
<Protobuf Include="Proto\party.proto" /> <Protobuf Include="..\..\aurora-proto\proto\party.proto" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<EmbeddedResource Include="Resources\backward.png" /> <EmbeddedResource Include="Resources\backward.png" />

View File

@ -5,7 +5,14 @@
}, },
{ {
"path": "aurora-cradle-sharp" "path": "aurora-cradle-sharp"
},
{
"path": "aurora-proto"
} }
], ],
"settings": {} "settings": {
"files.exclude": {
"**/obj": true
}
}
} }