Initial porting attempt of my WinForms MVVM library to Avalonia; added IWindowScope as a new reature because this library should support Microsoft's dependency injector
This commit is contained in:
commit
225da0d7e9
16 changed files with 1512 additions and 0 deletions
33
Nuclex.Avalonia.Tests (netstandard-2.0).csproj
Normal file
33
Nuclex.Avalonia.Tests (netstandard-2.0).csproj
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||
<AssemblyName>Nuclex.Support.Tests</AssemblyName>
|
||||
<RootNamespace>Nuclex.Support.Tests</RootNamespace>
|
||||
<IntermediateOutputPath>obj\tests</IntermediateOutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="Source\**" />
|
||||
<EmbeddedResource Remove="Source\**" />
|
||||
<None Remove="Source\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove=".git" />
|
||||
<None Remove="packages.config" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Moq" Version="4.20.70" />
|
||||
<PackageReference Include="NUnit" Version="3.14.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="Nuclex.Avalonia (netstandard-2.0).csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue