-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1002 from TestCentric/update-script
Clean up csproj files
- Loading branch information
Showing
7 changed files
with
198 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 20 additions & 16 deletions
36
src/GuiException/UiException/nunit.uiexception.dll.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<RootNamespace>NUnit.UiException</RootNamespace> | ||
<AssemblyName>nunit.uiexception</AssemblyName> | ||
<TargetFramework>net462</TargetFramework> | ||
<OutputPath>..\..\..\bin\$(Configuration)\</OutputPath> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>..\..\testcentric.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Remove="data\TextCode.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="System.Windows.Forms" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<RootNamespace>NUnit.UiException</RootNamespace> | ||
<AssemblyName>nunit.uiexception</AssemblyName> | ||
<TargetFramework>net462</TargetFramework> | ||
<OutputPath>..\..\..\bin\$(Configuration)\</OutputPath> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>..\..\testcentric.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="data\TextCode.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.Windows.Forms" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,38 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<RootNamespace>NUnit.UiException.Tests</RootNamespace> | ||
<AssemblyName>nunit.uiexception.tests</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net462</TargetFramework> | ||
<OutputPath>..\..\..\bin\$(Configuration)\</OutputPath> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System.Windows.Forms" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\UiException\nunit.uiexception.dll.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="data\Basic.cs" /> | ||
<EmbeddedResource Include="data\HelloWorld.txt" /> | ||
<EmbeddedResource Include="data\TextCode.txt" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="app.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="NSubstitute" Version="4.0.0" /> | ||
<PackageReference Include="NUnit" Version="3.13.2" /> | ||
<PackageReference Include="NUnitLite" Version="3.13.2" /> | ||
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.1" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<RootNamespace>NUnit.UiException.Tests</RootNamespace> | ||
<AssemblyName>nunit.uiexception.tests</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net462</TargetFramework> | ||
<OutputPath>..\..\..\bin\$(Configuration)\</OutputPath> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.Windows.Forms" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\UiException\nunit.uiexception.dll.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="data\Basic.cs" /> | ||
<EmbeddedResource Include="data\HelloWorld.txt" /> | ||
<EmbeddedResource Include="data\TextCode.txt" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="app.config" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NSubstitute" Version="4.0.0" /> | ||
<PackageReference Include="NUnit" Version="3.13.2" /> | ||
<PackageReference Include="NUnitLite" Version="3.13.2" /> | ||
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.