-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing a grain interface from the project fails the build #4189
Comments
Did you rebuild it with |
I tried both, neither works. Actually |
What version of VS are you running? I just tried the following code, and both using Orleans;
using System.Threading.Tasks;
namespace FooBar
{
public interface IFoo : IGrainWithGuidKey
{
Task Foo();
}
public interface IBar : IGrainWithGuidKey
{
Task Bar();
}
} What am I doing differently? I'm running VS 15.6.1. |
I have the interfaces in separate files and delete the file.
…On Mar 12, 2018 17:49, "Sergey Bykov" ***@***.***> wrote:
What version of VS are you running? I just tried the following code, and
both Build Solution and Rebuild Solution work fine after I comment out
one of the interfaces.
using Orleans;using System.Threading.Tasks;
namespace FooBar
{
public interface IFoo : IGrainWithGuidKey
{
Task Foo();
}
public interface IBar : IGrainWithGuidKey
{
Task Bar();
}
}
What am I doing differently? I'm running VS 15.6.1.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4189 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABtxJm4NO6otWi2FtjXqfKBtM1_myMiGks5tdpkkgaJpZM4Smxsp>
.
|
I see. Yes, I was able to repro this. |
I've just double checked: |
You are right, |
Ah, I see the problem. Now we just need to work out a way to fix this. |
How to reproduce:
Microsoft.Orleans.OrleansCodeGenerator.Build
2.0.0-rc1
andMicrosoft.Orleans.Runtime.Abstractions
2.0.0-rc1
Deleting
obj
directory helps.The text was updated successfully, but these errors were encountered: