I have this F# project Rm.Accounting.Domain
with the following files (and in that order):
Model.fs:module Rm.Accounting.Domain.ModelCommands.fs:module Rm.Accounting.Domain.CommandsEvents.fs:module Rm.Accounting.Domain.Events
and the last one causing problems Behaviour.fs:
module Rm.Accounting.Domain.Behaviour
open Rm.Accounting.Domain.Commands
open Rm.Accounting.Domain.Events
open Rm.Accounting.Infrastructure
let a = 42
Which leads to two errors:
Behaviour.fs(3, 20): [FS0039] The namespace 'Domain' is not defined.->open Rm.Accounting.Domain.CommandsBehaviour.fs(4, 20): [FS0039] The namespace 'Domain' is not defined.->open Rm.Accounting.Domain.Events
Without that file Behaviour.fs the project can compile, I am not sure to understand why those two imports cause some troubles.

Behavior.fsin that list.Behaviour.fs:"