|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>WinExe</OutputType> |
| 5 | + <TargetFramework>net8.0-windows</TargetFramework> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <ImplicitUsings>enable</ImplicitUsings> |
| 8 | + <UseWPF>true</UseWPF> |
| 9 | + <ApplicationIcon>Images\shield.ico</ApplicationIcon> |
| 10 | + </PropertyGroup> |
| 11 | + |
| 12 | + <ItemGroup> |
| 13 | + <None Remove="Images\binary-lock.png" /> |
| 14 | + <None Remove="Images\Danger.png" /> |
| 15 | + <None Remove="Images\github.png" /> |
| 16 | + <None Remove="Images\Good.png" /> |
| 17 | + <None Remove="Images\instagram.png" /> |
| 18 | + <None Remove="Images\linkedin.png" /> |
| 19 | + <None Remove="Images\portifolio.png" /> |
| 20 | + <None Remove="Images\shield.ico" /> |
| 21 | + </ItemGroup> |
| 22 | + |
| 23 | + <ItemGroup> |
| 24 | + <Folder Include="Fonts\" /> |
| 25 | + <Folder Include="MVVM\Model\" /> |
| 26 | + </ItemGroup> |
| 27 | + |
| 28 | + <ItemGroup> |
| 29 | + <Content Include="Images\binary-lock.png"> |
| 30 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 31 | + </Content> |
| 32 | + <Content Include="Images\Danger.png"> |
| 33 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 34 | + </Content> |
| 35 | + <Content Include="Images\github.png"> |
| 36 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 37 | + </Content> |
| 38 | + <Content Include="Images\Good.png"> |
| 39 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 40 | + </Content> |
| 41 | + <Content Include="Images\instagram.png"> |
| 42 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 43 | + </Content> |
| 44 | + <Content Include="Images\linkedin.png"> |
| 45 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 46 | + </Content> |
| 47 | + <Content Include="Images\portifolio.png"> |
| 48 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 49 | + </Content> |
| 50 | + <Content Include="Images\shield.ico"> |
| 51 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 52 | + </Content> |
| 53 | + </ItemGroup> |
| 54 | + |
| 55 | + <ItemGroup> |
| 56 | + <PackageReference Include="Microsoft.Windows.Compatibility" Version="8.0.0" /> |
| 57 | + <PackageReference Include="Ookii.Dialogs.Wpf" Version="5.0.1" /> |
| 58 | + </ItemGroup> |
| 59 | + |
| 60 | +</Project> |
0 commit comments