-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodingSeb.Mvvm.Examples.csproj
39 lines (32 loc) · 1.2 KB
/
CodingSeb.Mvvm.Examples.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>netcoreapp3.1;net47</TargetFrameworks>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Include="FodyWeavers.xsd" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CodingSeb.Converters" Version="1.0.3" />
<PackageReference Include="CodingSeb.Layouts" Version="1.0.1" />
<PackageReference Include="PropertyChanged.Fody" Version="3.3.1" PrivateAssets="All"/>
<PackageReference Include="CodingSeb.ExpressionEvaluator" Version="*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CodingSeb.Mvvm\CodingSeb.Mvvm.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>