Making file lock static
This commit is contained in:
parent
08b2b11940
commit
7977cf6a46
|
|
@ -14,7 +14,7 @@
|
|||
<SchemaVersion>2.0</SchemaVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
|
||||
<ProduceOutputsOnBuild>False</ProduceOutputsOnBuild>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
<ProjectExtensions>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ namespace Microsoft.AspNet.Identity.Test
|
|||
{
|
||||
public string FileName { get; set; }
|
||||
|
||||
public object FileLock { get; private set; } = new object();
|
||||
public static object FileLock { get; private set; } = new object();
|
||||
|
||||
public TestFileLogger(string name)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue