forked from open-rpa/openrpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenRPA.FileWatcher.csproj
89 lines (89 loc) · 3.91 KB
/
OpenRPA.FileWatcher.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
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
85
86
87
88
89
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net462</TargetFramework>
<Authors>Allan Zimmermann</Authors>
<Product>OpenRPA</Product>
<Description>Detector plugin for monitoring local file changes, created for OpenRPA robot</Description>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/open-rpa/openrpa</PackageProjectUrl>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>1.0.16</Version>
<PackageReleaseNotes>1.0.16 Add support for multiple file extensions in filter
1.0.15 Change target framework to 4.7.2
1.0.14 Add langauges
1.0.12 update interfaces reference
1.0.9 update interfaces reference</PackageReleaseNotes>
<PackageIcon>filewatcher.png</PackageIcon>
<Configurations>Debug;Release;ReleaseNuget;PrepInstaller</Configurations>
<PackageTags>OpenRPA</PackageTags>
<RepositoryUrl>https://github.com/open-rpa/openrpa</RepositoryUrl>
<Platforms>AnyCPU;x86</Platforms>
<Company>OpenIAP</Company>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\debug</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<OutputPath>..\debug86</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\dist</OutputPath>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<OutputPath>..\dist</OutputPath>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PrepInstaller|AnyCPU'">
<OutputPath></OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PrepInstaller|x86'">
<OutputPath />
</PropertyGroup>
<ItemGroup>
<None Include="Resources\filewatcher.png" Pack="true" PackagePath="\" />
<None Remove="Views\FileWatcherView.xaml" />
</ItemGroup>
<ItemGroup>
<Page Include="Views\FileWatcherView.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OpenRPA.Interfaces\OpenRPA.Interfaces.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Xaml" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>strings.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\strings.ru.resx">
<LastGenOutput>strings.Designer.cs</LastGenOutput>
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
<EmbeddedResource Update="Resources\strings.ro.resx">
<LastGenOutput>strings.Designer.cs</LastGenOutput>
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
<EmbeddedResource Update="Resources\strings.resx">
<LastGenOutput>strings.Designer.cs</LastGenOutput>
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>
<Target Name="PushNugetPackage" AfterTargets="Pack" Condition="'$(Configuration)' == 'ReleaseNuget'">
<Exec Command="nuget.exe push $(OutputPath)..\$(PackageId).$(PackageVersion).nupkg -Source nuget.org" />
</Target>
<Target Name="PostBuild" AfterTargets="Pack" Condition="'$(Configuration)' == 'Debug'">
<Exec Command="copy $(OutputPath)..\$(PackageId).$(PackageVersion).nupkg C:\code\OpenRPA\packages" />
</Target>
<Target Name="PostBuild" AfterTargets="Pack" Condition="'$(Configuration)' == 'PrepInstaller'">
<Exec Command="copy $(OutputPath)..\$(PackageId).$(PackageVersion).nupkg C:\code\OpenRPA\packages" />
</Target>
<ProjectExtensions><VisualStudio><UserProperties BuildVersion_StartDate="2000/1/1" /></VisualStudio></ProjectExtensions>
</Project>