Why is my colleague seeing another project file (* .csproj) using Visual Source Safe
I came across a problem that is very strange, my company uses Visual Source Safe
for version control, but I found that my other team member sees the same .csproj file in VSS, it is not the same, it is very strange, you can help me ? thank you !!
there is a file in VSS called IPRA.WinUi.Sal.Sra.csproj:
when Tom logs in, the "IPRA.WinUi.Sal.Sra.csproj" file:
<Reference Include="Ark.Client.WinUi, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\ARAF\BusinessFramework\Ark.Client.WinUi.dll</HintPath>
</Reference>
<Reference Include="Ark.Common.Business, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
<Reference Include="Ark.Controls.Business, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\ARAF\SystemFramework\Ark.Controls.Business.dll</HintPath>
</Reference>
But when the loy is registered, the same file "IPRA.WinUi.Sal.Sra.csproj":
<Reference Include="Ark.Client.WinUi, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\ARAF\BusinessFramework\Ark.Client.WinUi.dll</HintPath>
</Reference>
<Reference Include="Ark.Common.Business, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
<SpecificVersion>False</SpecificVersion>
<HintPath>..\ARAF\BusinessFramework\Ark.Controls.WinUi.dll</HintPath>
<Reference Include="Ark.Controls.Business, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\ARAF\SystemFramework\Ark.Controls.Business.dll</HintPath>
</Reference>
a source to share
but I found that my team is different member sees the same .csproj file in VSS is not the same,
Does the team see the same cs project? Then skip the problem?
If the team sees a different file, the other person is not registered, or you are not using the latest version. Always try to check when you leave and get the latest version when you start your work.
a source to share