├── .gitignore ├── BuildAll.ps1 ├── Documentation ├── CodeGenDocumentation.md ├── Installation.md └── Tutorial.md ├── LICENSE ├── Nuget ├── ETG.Orleans.Templates.Grains │ ├── ETG.Orleans.Templates.Grains.nuspec │ └── EmptyFile.cs ├── ETG.Orleans.Templates.Interfaces │ ├── ETG.Orleans.Templates.Interfaces.nuspec │ └── EmptyFile.cs ├── ETG.Orleans │ └── ETG.Orleans.nuspec └── NugetPackAll.ps1 ├── README.md ├── VSTemplates ├── ETG.Orleans.Solution │ └── ETG.Orleans.Solution.vstemplate ├── ETG.Orleans.Templates.Grains │ ├── AssemblyInfo.cs │ ├── ETG.Orleans.Templates.Grains.csproj │ ├── ETG.Orleans.Templates.Grains.ico │ ├── ETG.Orleans.Templates.Grains.vstemplate │ ├── PrefsGrain.cs │ ├── ProjectTemplate.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── ETG.Orleans.Templates.Host │ ├── AssemblyInfo.cs │ ├── DevTestClientConfiguration.xml │ ├── DevTestServerConfiguration.xml │ ├── ETG.Orleans.Templates.Host.csproj │ ├── ETG.Orleans.Templates.Host.ico │ ├── ETG.Orleans.Templates.Host.vstemplate │ ├── OrleansHostWrapper.cs │ ├── Program.cs │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SelfHostAssemblyResolver.cs │ ├── UnityResolver.cs │ ├── WebApiWrapper.cs │ └── packages.config ├── ETG.Orleans.Templates.Interfaces │ ├── AssemblyInfo.cs │ ├── ETG.Orleans.Templates.Interfaces.csproj │ ├── ETG.Orleans.Templates.Interfaces.ico │ ├── ETG.Orleans.Templates.Interfaces.vstemplate │ ├── IPrefsGrain.cs │ ├── ProjectTemplate.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── ETG.Orleans.Templates.VSIX │ ├── ETG.Orleans.Templates.VSIX.csproj │ ├── GenerateSolutionZip.ps1 │ ├── Properties │ │ └── AssemblyInfo.cs │ └── source.extension.vsixmanifest ├── ETG.Orleans.Templates.WebApis │ ├── AssemblyInfo.cs │ ├── ETG.Orleans.Templates.WebApis.csproj │ ├── ETG.Orleans.Templates.WebApis.ico │ ├── ETG.Orleans.Templates.WebApis.vstemplate │ ├── MyController.cs │ ├── ProjectTemplate.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── VSTemplates.sln ├── src ├── .nuget │ ├── NuGet.Config │ └── NuGet.targets ├── ETG.Orleans.CodeGen │ ├── AttributeInspector.cs │ ├── CodeGenManager.cs │ ├── CodeGenParticipants │ │ ├── ApiControllerGenerator.cs │ │ ├── CodeGenResult.cs │ │ ├── ICodeGenParticipant.cs │ │ ├── SwmrGrainsGenerator.cs │ │ └── SwmrInterfaceGenerator.cs │ ├── ETG.Orleans.CodeGen.csproj │ ├── MethodInspector.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Tasks │ │ ├── CodeGenBaseTask.cs │ │ ├── GenerateApiControllersTask.cs │ │ ├── GenerateSwmrGrainsTask.cs │ │ └── GenerateSwmrInterfacesTask.cs │ ├── TypeInspector.cs │ ├── Utils │ │ ├── AttributeUtils.cs │ │ ├── LoaderExceptionUtils.cs │ │ ├── NamingUtils.cs │ │ ├── RoslynUtils.cs │ │ └── SwmrUtils.cs │ ├── app.config │ └── packages.config ├── ETG.Orleans.sln ├── ETG.Orleans │ ├── Attributes │ │ ├── ApiControllerAttribute.cs │ │ ├── ReadOnlyAttribute.cs │ │ └── SingleWriterMultipleReadersAttribute.cs │ ├── ETG.Orleans.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Swmr │ │ ├── ITopology.cs │ │ ├── StaticTopology.cs │ │ └── SwmrUtils.cs │ ├── app.config │ └── packages.config ├── MSBuildTargets │ ├── ETG.Orleans.Templates.Grains.targets │ └── ETG.Orleans.Templates.Interfaces.targets └── TestingConsoleApp │ ├── App.config │ ├── IMyGrain1.cs │ ├── IMyGrainState1.cs │ ├── MyGrain1.cs │ ├── MyGrain1Base.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TestingConsoleApp.csproj │ └── packages.config └── test ├── .nuget ├── NuGet.Config └── NuGet.targets ├── ETG.Orleans.CodeGenTest.sln ├── ETG.Orleans.CodeGenTest ├── ApiControllerGeneratorTest.cs ├── ETG.Orleans.CodeGenTest.csproj ├── Properties │ └── AssemblyInfo.cs ├── SwmrGrainGeneratorTest.cs ├── SwmrInterfaceGeneratorTest.cs └── packages.config └── TestData ├── ApiController_SimpleInterface ├── ApiController_SimpleInterface.csproj ├── IPrefsGrain.cs ├── Properties │ ├── AssemblyInfo.cs │ └── orleans.codegen.cs └── packages.config ├── SWMR_MultipleGrains_Grains ├── HelloGrain.cs ├── OtherGrain.cs ├── Properties │ └── AssemblyInfo.cs ├── SWMR_MultipleGrains_Grains.csproj └── packages.config ├── SWMR_MultipleGrains_Interfaces ├── IHelloGrain.cs ├── IOtherGrain.cs ├── Properties │ ├── AssemblyInfo.cs │ └── orleans.codegen.cs ├── SWMR_MultipleGrains_Interfaces.csproj └── packages.config ├── SWMR_Simple_Grains ├── HelloGrain.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── etg.orleans.codegen.cs │ └── orleans.codegen.cs ├── SWMR_Simple_Grains.csproj └── packages.config ├── SWMR_Simple_Interfaces ├── IHelloGrain.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── etg.orleans.codegen.cs │ └── orleans.codegen.cs ├── SWMR_Simple_Interfaces.csproj └── packages.config ├── State_Simple_Grains ├── IMyGrainState.cs ├── MyGrain.cs ├── MyGrainBase.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── etg.orleans.codegen.cs │ └── orleans.codegen.cs ├── State_Simple_Grains.csproj └── packages.config └── State_Simple_Interfaces ├── MyGrainInterface.cs ├── Properties ├── AssemblyInfo.cs ├── etg.orleans.codegen.cs └── orleans.codegen.cs ├── State_Simple_Interfaces.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/BuildAll.ps1 -------------------------------------------------------------------------------- /Documentation/CodeGenDocumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/Documentation/CodeGenDocumentation.md -------------------------------------------------------------------------------- /Documentation/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/Documentation/Installation.md -------------------------------------------------------------------------------- /Documentation/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/Documentation/Tutorial.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/LICENSE -------------------------------------------------------------------------------- /Nuget/ETG.Orleans.Templates.Grains/ETG.Orleans.Templates.Grains.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/Nuget/ETG.Orleans.Templates.Grains/ETG.Orleans.Templates.Grains.nuspec -------------------------------------------------------------------------------- /Nuget/ETG.Orleans.Templates.Grains/EmptyFile.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nuget/ETG.Orleans.Templates.Interfaces/ETG.Orleans.Templates.Interfaces.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/Nuget/ETG.Orleans.Templates.Interfaces/ETG.Orleans.Templates.Interfaces.nuspec -------------------------------------------------------------------------------- /Nuget/ETG.Orleans.Templates.Interfaces/EmptyFile.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nuget/ETG.Orleans/ETG.Orleans.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/Nuget/ETG.Orleans/ETG.Orleans.nuspec -------------------------------------------------------------------------------- /Nuget/NugetPackAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/Nuget/NugetPackAll.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/README.md -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Solution/ETG.Orleans.Solution.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Solution/ETG.Orleans.Solution.vstemplate -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Grains/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Grains/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Grains/ETG.Orleans.Templates.Grains.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Grains/ETG.Orleans.Templates.Grains.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Grains/ETG.Orleans.Templates.Grains.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Grains/ETG.Orleans.Templates.Grains.ico -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Grains/ETG.Orleans.Templates.Grains.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Grains/ETG.Orleans.Templates.Grains.vstemplate -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Grains/PrefsGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Grains/PrefsGrain.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Grains/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Grains/ProjectTemplate.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Grains/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Grains/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/DevTestClientConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/DevTestClientConfiguration.xml -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/DevTestServerConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/DevTestServerConfiguration.xml -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/ETG.Orleans.Templates.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/ETG.Orleans.Templates.Host.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/ETG.Orleans.Templates.Host.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/ETG.Orleans.Templates.Host.ico -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/ETG.Orleans.Templates.Host.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/ETG.Orleans.Templates.Host.vstemplate -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/OrleansHostWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/OrleansHostWrapper.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/Program.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/ProjectTemplate.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/SelfHostAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/SelfHostAssemblyResolver.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/UnityResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/UnityResolver.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/WebApiWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/WebApiWrapper.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Host/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Host/packages.config -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Interfaces/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Interfaces/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Interfaces/ETG.Orleans.Templates.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Interfaces/ETG.Orleans.Templates.Interfaces.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Interfaces/ETG.Orleans.Templates.Interfaces.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Interfaces/ETG.Orleans.Templates.Interfaces.ico -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Interfaces/ETG.Orleans.Templates.Interfaces.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Interfaces/ETG.Orleans.Templates.Interfaces.vstemplate -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Interfaces/IPrefsGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Interfaces/IPrefsGrain.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Interfaces/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Interfaces/ProjectTemplate.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.Interfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.Interfaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.VSIX/ETG.Orleans.Templates.VSIX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.VSIX/ETG.Orleans.Templates.VSIX.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.VSIX/GenerateSolutionZip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.VSIX/GenerateSolutionZip.ps1 -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.VSIX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.VSIX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.VSIX/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.VSIX/source.extension.vsixmanifest -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.WebApis/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.WebApis/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.WebApis/ETG.Orleans.Templates.WebApis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.WebApis/ETG.Orleans.Templates.WebApis.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.WebApis/ETG.Orleans.Templates.WebApis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.WebApis/ETG.Orleans.Templates.WebApis.ico -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.WebApis/ETG.Orleans.Templates.WebApis.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.WebApis/ETG.Orleans.Templates.WebApis.vstemplate -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.WebApis/MyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.WebApis/MyController.cs -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.WebApis/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.WebApis/ProjectTemplate.csproj -------------------------------------------------------------------------------- /VSTemplates/ETG.Orleans.Templates.WebApis/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/ETG.Orleans.Templates.WebApis/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTemplates/VSTemplates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/VSTemplates/VSTemplates.sln -------------------------------------------------------------------------------- /src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/AttributeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/AttributeInspector.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/CodeGenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/CodeGenManager.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/CodeGenParticipants/ApiControllerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/CodeGenParticipants/ApiControllerGenerator.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/CodeGenParticipants/CodeGenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/CodeGenParticipants/CodeGenResult.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/CodeGenParticipants/ICodeGenParticipant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/CodeGenParticipants/ICodeGenParticipant.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/CodeGenParticipants/SwmrGrainsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/CodeGenParticipants/SwmrGrainsGenerator.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/CodeGenParticipants/SwmrInterfaceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/CodeGenParticipants/SwmrInterfaceGenerator.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/ETG.Orleans.CodeGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/ETG.Orleans.CodeGen.csproj -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/MethodInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/MethodInspector.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Tasks/CodeGenBaseTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Tasks/CodeGenBaseTask.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Tasks/GenerateApiControllersTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Tasks/GenerateApiControllersTask.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Tasks/GenerateSwmrGrainsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Tasks/GenerateSwmrGrainsTask.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Tasks/GenerateSwmrInterfacesTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Tasks/GenerateSwmrInterfacesTask.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/TypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/TypeInspector.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Utils/AttributeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Utils/AttributeUtils.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Utils/LoaderExceptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Utils/LoaderExceptionUtils.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Utils/NamingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Utils/NamingUtils.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Utils/RoslynUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Utils/RoslynUtils.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/Utils/SwmrUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/Utils/SwmrUtils.cs -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/app.config -------------------------------------------------------------------------------- /src/ETG.Orleans.CodeGen/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.CodeGen/packages.config -------------------------------------------------------------------------------- /src/ETG.Orleans.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans.sln -------------------------------------------------------------------------------- /src/ETG.Orleans/Attributes/ApiControllerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/Attributes/ApiControllerAttribute.cs -------------------------------------------------------------------------------- /src/ETG.Orleans/Attributes/ReadOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/Attributes/ReadOnlyAttribute.cs -------------------------------------------------------------------------------- /src/ETG.Orleans/Attributes/SingleWriterMultipleReadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/Attributes/SingleWriterMultipleReadersAttribute.cs -------------------------------------------------------------------------------- /src/ETG.Orleans/ETG.Orleans.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/ETG.Orleans.csproj -------------------------------------------------------------------------------- /src/ETG.Orleans/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ETG.Orleans/Swmr/ITopology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/Swmr/ITopology.cs -------------------------------------------------------------------------------- /src/ETG.Orleans/Swmr/StaticTopology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/Swmr/StaticTopology.cs -------------------------------------------------------------------------------- /src/ETG.Orleans/Swmr/SwmrUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/Swmr/SwmrUtils.cs -------------------------------------------------------------------------------- /src/ETG.Orleans/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/app.config -------------------------------------------------------------------------------- /src/ETG.Orleans/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/ETG.Orleans/packages.config -------------------------------------------------------------------------------- /src/MSBuildTargets/ETG.Orleans.Templates.Grains.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/MSBuildTargets/ETG.Orleans.Templates.Grains.targets -------------------------------------------------------------------------------- /src/MSBuildTargets/ETG.Orleans.Templates.Interfaces.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/MSBuildTargets/ETG.Orleans.Templates.Interfaces.targets -------------------------------------------------------------------------------- /src/TestingConsoleApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/App.config -------------------------------------------------------------------------------- /src/TestingConsoleApp/IMyGrain1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/IMyGrain1.cs -------------------------------------------------------------------------------- /src/TestingConsoleApp/IMyGrainState1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/IMyGrainState1.cs -------------------------------------------------------------------------------- /src/TestingConsoleApp/MyGrain1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/MyGrain1.cs -------------------------------------------------------------------------------- /src/TestingConsoleApp/MyGrain1Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/MyGrain1Base.cs -------------------------------------------------------------------------------- /src/TestingConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/Program.cs -------------------------------------------------------------------------------- /src/TestingConsoleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestingConsoleApp/TestingConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/TestingConsoleApp.csproj -------------------------------------------------------------------------------- /src/TestingConsoleApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/src/TestingConsoleApp/packages.config -------------------------------------------------------------------------------- /test/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/.nuget/NuGet.Config -------------------------------------------------------------------------------- /test/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/.nuget/NuGet.targets -------------------------------------------------------------------------------- /test/ETG.Orleans.CodeGenTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/ETG.Orleans.CodeGenTest.sln -------------------------------------------------------------------------------- /test/ETG.Orleans.CodeGenTest/ApiControllerGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/ETG.Orleans.CodeGenTest/ApiControllerGeneratorTest.cs -------------------------------------------------------------------------------- /test/ETG.Orleans.CodeGenTest/ETG.Orleans.CodeGenTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/ETG.Orleans.CodeGenTest/ETG.Orleans.CodeGenTest.csproj -------------------------------------------------------------------------------- /test/ETG.Orleans.CodeGenTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/ETG.Orleans.CodeGenTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/ETG.Orleans.CodeGenTest/SwmrGrainGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/ETG.Orleans.CodeGenTest/SwmrGrainGeneratorTest.cs -------------------------------------------------------------------------------- /test/ETG.Orleans.CodeGenTest/SwmrInterfaceGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/ETG.Orleans.CodeGenTest/SwmrInterfaceGeneratorTest.cs -------------------------------------------------------------------------------- /test/ETG.Orleans.CodeGenTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/ETG.Orleans.CodeGenTest/packages.config -------------------------------------------------------------------------------- /test/TestData/ApiController_SimpleInterface/ApiController_SimpleInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/ApiController_SimpleInterface/ApiController_SimpleInterface.csproj -------------------------------------------------------------------------------- /test/TestData/ApiController_SimpleInterface/IPrefsGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/ApiController_SimpleInterface/IPrefsGrain.cs -------------------------------------------------------------------------------- /test/TestData/ApiController_SimpleInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/ApiController_SimpleInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/TestData/ApiController_SimpleInterface/Properties/orleans.codegen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/ApiController_SimpleInterface/Properties/orleans.codegen.cs -------------------------------------------------------------------------------- /test/TestData/ApiController_SimpleInterface/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/ApiController_SimpleInterface/packages.config -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Grains/HelloGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Grains/HelloGrain.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Grains/OtherGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Grains/OtherGrain.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Grains/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Grains/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Grains/SWMR_MultipleGrains_Grains.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Grains/SWMR_MultipleGrains_Grains.csproj -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Grains/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Grains/packages.config -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Interfaces/IHelloGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Interfaces/IHelloGrain.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Interfaces/IOtherGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Interfaces/IOtherGrain.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Interfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Interfaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Interfaces/Properties/orleans.codegen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Interfaces/Properties/orleans.codegen.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Interfaces/SWMR_MultipleGrains_Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Interfaces/SWMR_MultipleGrains_Interfaces.csproj -------------------------------------------------------------------------------- /test/TestData/SWMR_MultipleGrains_Interfaces/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_MultipleGrains_Interfaces/packages.config -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Grains/HelloGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Grains/HelloGrain.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Grains/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Grains/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Grains/Properties/etg.orleans.codegen.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Grains/Properties/orleans.codegen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Grains/Properties/orleans.codegen.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Grains/SWMR_Simple_Grains.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Grains/SWMR_Simple_Grains.csproj -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Grains/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Grains/packages.config -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Interfaces/IHelloGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Interfaces/IHelloGrain.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Interfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Interfaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Interfaces/Properties/etg.orleans.codegen.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Interfaces/Properties/orleans.codegen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Interfaces/Properties/orleans.codegen.cs -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Interfaces/SWMR_Simple_Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Interfaces/SWMR_Simple_Interfaces.csproj -------------------------------------------------------------------------------- /test/TestData/SWMR_Simple_Interfaces/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/SWMR_Simple_Interfaces/packages.config -------------------------------------------------------------------------------- /test/TestData/State_Simple_Grains/IMyGrainState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Grains/IMyGrainState.cs -------------------------------------------------------------------------------- /test/TestData/State_Simple_Grains/MyGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Grains/MyGrain.cs -------------------------------------------------------------------------------- /test/TestData/State_Simple_Grains/MyGrainBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Grains/MyGrainBase.cs -------------------------------------------------------------------------------- /test/TestData/State_Simple_Grains/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Grains/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/TestData/State_Simple_Grains/Properties/etg.orleans.codegen.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/TestData/State_Simple_Grains/Properties/orleans.codegen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Grains/Properties/orleans.codegen.cs -------------------------------------------------------------------------------- /test/TestData/State_Simple_Grains/State_Simple_Grains.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Grains/State_Simple_Grains.csproj -------------------------------------------------------------------------------- /test/TestData/State_Simple_Grains/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Grains/packages.config -------------------------------------------------------------------------------- /test/TestData/State_Simple_Interfaces/MyGrainInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Interfaces/MyGrainInterface.cs -------------------------------------------------------------------------------- /test/TestData/State_Simple_Interfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Interfaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/TestData/State_Simple_Interfaces/Properties/etg.orleans.codegen.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/TestData/State_Simple_Interfaces/Properties/orleans.codegen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Interfaces/Properties/orleans.codegen.cs -------------------------------------------------------------------------------- /test/TestData/State_Simple_Interfaces/State_Simple_Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Interfaces/State_Simple_Interfaces.csproj -------------------------------------------------------------------------------- /test/TestData/State_Simple_Interfaces/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrleansContrib/OrleansTemplates/HEAD/test/TestData/State_Simple_Interfaces/packages.config --------------------------------------------------------------------------------