forked from HandyOrg/HandyWinGet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHandyWinGet-GUI.csproj
More file actions
84 lines (84 loc) · 3.46 KB
/
Copy pathHandyWinGet-GUI.csproj
File metadata and controls
84 lines (84 loc) · 3.46 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<AssemblyName>HandyWinget_GUI</AssemblyName>
<RootNamespace>HandyWinget_GUI</RootNamespace>
<Version>1.3.0.1</Version>
<Configurations>Debug;Release</Configurations>
<Copyright>Copyright © HandyOrg 2018-2020</Copyright>
<FileVersion>1.3.0.1</FileVersion>
<AssemblyVersion>1.3.0.1</AssemblyVersion>
<LangVersion>latest</LangVersion>
<SatelliteResourceLanguages>en;fa</SatelliteResourceLanguages>
<ApplicationIcon>Resources\Img\icon.ico</ApplicationIcon>
<Authors>Mahdi Hosseini</Authors>
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
<Company>HandyOrg</Company>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Font\IRANSans.ttf" />
<None Remove="Resources\Img\cloud.png" />
<None Remove="Resources\Img\Flag\en.png" />
<None Remove="Resources\Img\Flag\fa.png" />
<None Remove="Resources\Img\under_construction.gif" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Img\cloud.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="2.5.3" />
<PackageReference Include="LibGit2Sharp" Version="0.26.2" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="3.2.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="3.2.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Prism.DryIoc" Version="7.2.0.1422" />
</ItemGroup>
<ItemGroup>
<Page Include="Properties\DesignTimeResources.xaml" Condition="'$(DesignTime)'=='true' OR ('$(SolutionPath)'!='' AND Exists('$(SolutionPath)') AND '$(BuildingInsideVisualStudio)'!='true' AND '$(BuildingInsideExpressionBlend)'!='true')">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<ContainsDesignTimeResources>true</ContainsDesignTimeResources>
</Page>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Font\IRANSans.ttf" />
<Resource Include="Resources\Img\Flag\en.png" />
<Resource Include="Resources\Img\Flag\fa.png" />
<Resource Include="Resources\Img\under_construction.gif" />
</ItemGroup>
<ItemGroup>
<Compile Update="Assets\Languages\Lang.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Lang.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Assets\Languages\Lang.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Lang.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="HandyUpdater.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="HandyUpdater.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="HandyUpdater.runtimeconfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="UnRAR.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>